Skip to content

Commit cccb53b

Browse files
committed
bumped to version 2.0.1 to fix .net standard version. The props file had a path for netstandard 1.6 but the project builds for 2.0 since the MSBuild nuget dependency requires 2.0 as a minimum.
1 parent c0143c4 commit cccb53b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

BuildVersion.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ This file is updated on a public release to set the next build that pre-releases
44
<BuildVersionData
55
BuildMajor = "2"
66
BuildMinor = "0"
7-
BuildPatch = "0"
7+
BuildPatch = "1"
88
/>

src/CSemVer.Build.Tasks/CSemVer.Build.Tasks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net46;netstandard2.0</TargetFrameworks>
3+
<TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
44
<PackageId>CSemVer.Build.Tasks</PackageId>
55
<Authors>UbiquityDotNET</Authors>
66
<Copyright>Copyright (C) 2017, Ubiquity.NET Contributors</Copyright>

src/CSemVer.Build.Tasks/build/CSemVer.Build.Tasks.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<CiBuildName Condition="'$(CiBuildName)'=='' AND '$(IsAutomatedBuild)'=='true' AND '$(IsReleaseBuild)'!='true'">BLD</CiBuildName>
1616
<CiBuildName Condition="'$(CiBuildName)'=='' AND '$(IsReleaseBuild)'!='true'">ZZZ</CiBuildName>
1717

18-
<TaskFolder Condition=" '$(MSBuildRuntimeType)' == 'Core' ">netstandard1.6</TaskFolder>
18+
<TaskFolder Condition=" '$(MSBuildRuntimeType)' == 'Core' ">netstandard2.0</TaskFolder>
1919
<TaskFolder Condition=" '$(MSBuildRuntimeType)' != 'Core' ">net46</TaskFolder>
2020
<CSemVerBuildTaskAssembly>$(MSBuildThisFileDirectory)..\tasks\$(TaskFolder)\CSemVer.Build.Tasks.dll</CSemVerBuildTaskAssembly>
2121
</PropertyGroup>

0 commit comments

Comments
 (0)