Skip to content

Commit a37faa8

Browse files
committed
Build: Fix paths in scripts
1 parent f339d79 commit a37faa8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Build/nuget-restore.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@echo off
22
SET ROOT=%~dp0..
33
SET NuGetExe=%ROOT%\Tools\NuGet.exe
4-
SET SolutionFile=%ROOT%\Src\UnitsNet.sln
4+
SET SolutionFile=%ROOT%\UnitsNet.sln
55
%NuGetExe% restore %SolutionFile%

Build/src.msbuild

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
<Target Name="CompileProjects">
1919

2020
<MSBuild Projects="
21-
$(SrcPath)\UnitsNet\UnitsNet.Net35.csproj;
22-
$(SrcPath)\UnitsNet\UnitsNet.Net451.csproj;
23-
$(SrcPath)\UnitsNet\UnitsNet.Portable40.csproj;
24-
$(SrcPath)\UnitsNet\UnitsNet.Portable45.csproj"
21+
$(SrcPath)\UnitsNet.Net35.csproj;
22+
$(SrcPath)\UnitsNet.Net451.csproj;
23+
$(SrcPath)\UnitsNet.Portable40.csproj;
24+
$(SrcPath)\UnitsNet.Portable45.csproj"
2525
Properties="Platform=$(Platform);Configuration=$(Configuration);VisualStudioVersion=$(VisualStudioVersion);AllowUnsafeBlocks=true;Retries=15;RetryDelayMilliseconds=5"
2626
Targets="Build">
2727
</MSBuild>

0 commit comments

Comments
 (0)