Skip to content

Commit

Permalink
Fix issue where nuget package can be inadvertantly released in DEBUG …
Browse files Browse the repository at this point in the history
…mode.
  • Loading branch information
Brondahl committed Jan 5, 2020
1 parent 0fc8cd1 commit 4685f90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions EnumStringValues/EnumStringValues.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net40;net451;net461</TargetFrameworks>
<AssemblyName>EnumStringValues</AssemblyName>
<PackageId>EnumStringValues</PackageId>
<PackageVersion>4.0.1</PackageVersion>
<Version>4.0.1</Version>
<PackageId Condition=" '$(Configuration)'=='Release' ">EnumStringValues</PackageId>
<PackageId Condition=" '$(Configuration)'=='Debug' ">EnumStringValues_Debug</PackageId>
<Version>4.0.2</Version>
<Title>Enum String Values</Title>
<Authors>Brondahl</Authors>
<PackageOutputPath>../nuget</PackageOutputPath>
Expand Down

0 comments on commit 4685f90

Please sign in to comment.