Skip to content

Commit c99d418

Browse files
committed
Build/src.msbuild: Remove .NET 4.5.1 and Portable 45 projects
1 parent 1027df2 commit c99d418

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

Build/src.msbuild

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="CompileProjects" ToolsVersion="12.0">
33
<Import Project="paths.msbuild" />
4-
4+
55
<PropertyGroup>
66
<Platform>AnyCPU</Platform>
77
<Configuration>Release</Configuration>
88
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">12.0</VisualStudioVersion>
99
</PropertyGroup>
10-
10+
1111
<Target Name="CleanAndBuild" DependsOnTargets="Clean;CompileProjects" />
12-
12+
1313
<Target Name="Clean">
1414
<MSBuild Projects="@(AllProjects)" Targets="Clean" />
1515
<RemoveDir Directories="$(SrcBinPath)" />
16-
</Target>
16+
</Target>
1717

1818
<Target Name="CompileProjects">
1919

2020
<MSBuild Projects="
2121
$(SrcPath)\UnitsNet.Net35.csproj;
22-
$(SrcPath)\UnitsNet.Net451.csproj;
2322
$(SrcPath)\UnitsNet.Portable40.csproj;
24-
$(SrcPath)\UnitsNet.Portable45.csproj;
2523
$(SerializationSrcPath)\UnitsNet.Serialization.JsonNet.Net35.csproj"
2624
Properties="Platform=$(Platform);Configuration=$(Configuration);VisualStudioVersion=$(VisualStudioVersion);AllowUnsafeBlocks=true;Retries=15;RetryDelayMilliseconds=5"
2725
Targets="Build">

0 commit comments

Comments
 (0)