summarylogtreecommitdiffstats
path: root/Microsoft.PowerShell.SDK.csproj.TypeCatalog.targets
diff options
context:
space:
mode:
authorCarl Smedstad2023-08-02 09:24:53 +0200
committerCarl Smedstad2023-08-03 17:27:19 +0200
commit66629c518e26b63ed3eb58a30061594f6673ae7b (patch)
treeaa2dc8a215596883b3b3a0e8bd2ad4f127bfcf89 /Microsoft.PowerShell.SDK.csproj.TypeCatalog.targets
parentf4b3289cc24746032c4fa4d89fd19ba0e145324a (diff)
downloadaur-66629c518e26b63ed3eb58a30061594f6673ae7b.tar.gz
Publish version 7.3.6-1 - Major refactoring
I've reviewed the package thoroughly and ended up making some major changes: * Removed separate build of PowerShell-Native, the artifacts we built were unused and the ones fetched NuGet was installed. Building PowerShell-Native as a separate package to depend on is something that might be considered for the future. * I've closely examined the build script upstream uses (build.psm1) and tried to replicate that build process as closely as possible. * I've replaced the old test suites with upstream's PowerShell suite. This suite does take around 5 minutes but, as these tests thoroughly test the core functionality of the package, I consider it worthwhile.
Diffstat (limited to 'Microsoft.PowerShell.SDK.csproj.TypeCatalog.targets')
-rw-r--r--Microsoft.PowerShell.SDK.csproj.TypeCatalog.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/Microsoft.PowerShell.SDK.csproj.TypeCatalog.targets b/Microsoft.PowerShell.SDK.csproj.TypeCatalog.targets
index 85ece3e539a3..65d52cfcb5b2 100644
--- a/Microsoft.PowerShell.SDK.csproj.TypeCatalog.targets
+++ b/Microsoft.PowerShell.SDK.csproj.TypeCatalog.targets
@@ -2,7 +2,7 @@
<Target Name="_GetDependencies"
DependsOnTargets="ResolveAssemblyReferencesDesignTime">
<ItemGroup>
- <_RefAssemblyPath Include="%(_ReferencesFromRAR.HintPath)%3B" Condition=" '%(_ReferencesFromRAR.NuGetPackageId)' != 'Microsoft.Management.Infrastructure' "/>
+ <_RefAssemblyPath Include="%(_ReferencesFromRAR.OriginalItemSpec)%3B" Condition=" '%(_ReferencesFromRAR.NuGetPackageId)' != 'Microsoft.Management.Infrastructure' "/>
</ItemGroup>
<WriteLinesToFile File="$(_DependencyFile)" Lines="@(_RefAssemblyPath)" Overwrite="true" />
</Target>