File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 2727 - name : Install dependencies
2828 run : dotnet restore
2929
30+ - name : Debug NuGet Packages Path
31+ run : dotnet nuget locals global-packages -l
32+
3033 - name : Build
3134 run : dotnet build --configuration ${{ matrix.configuration }}
3235
Original file line number Diff line number Diff line change 3939 </None >
4040 </ItemGroup >
4141
42+ <PropertyGroup >
43+ <NuGetPackageRoot Condition =" '$(NuGetPackageRoot)' == ''" >$(USERPROFILE)\.nuget\packages\</NuGetPackageRoot >
44+ </PropertyGroup >
45+
4246 <Target Name =" TestWebCompiler" AfterTargets =" BeforeBuild" >
47+ <Message Text =" NuGetPackageRoot: $(NuGetPackageRoot)" Importance =" high" />
48+ <Exec Command =" echo NuGetPackageRoot: $(NuGetPackageRoot)" />
49+
4350 <!-- Run Strong Name Signer -->
4451 <Exec ContinueOnError =" false"
45- Command =" " ..\..\packages\ Brutal.Dev.StrongNameSigner.3.5.1\build\StrongNameSigner.Console.exe" -in " ..\..\packages\ " " />
52+ Command =" " $(NuGetPackageRoot) Brutal.Dev.StrongNameSigner.3.5.1\build\StrongNameSigner.Console.exe" -in " $(NuGetPackageRoot) " " />
4653
4754 <!-- Test if Excubo.WebCompiler is installed (recommended) -->
4855 <Exec Command =" webcompiler -h" ContinueOnError =" true" StandardOutputImportance =" low" StandardErrorImportance =" low" LogStandardErrorAsError =" false" IgnoreExitCode =" true" >
You can’t perform that action at this time.
0 commit comments