Skip to content

Commit

Permalink
The changes made in this commit include:
Browse files Browse the repository at this point in the history
- Modified DgmjrSdk.nuproj to update the PackageVersionOverride condition.
- The condition now checks if PackageVersionOverride is empty and if the Configuration is not 'Local' before setting it to 0.0.23.
  • Loading branch information
dgmjr committed Oct 1, 2023
1 parent 869c787 commit 81f8c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DgmjrSdk.nuproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<NoWarn>$(NoWarn);MSB4011</NoWarn>
<PackageIcon>Icon.png</PackageIcon>
<IsUsingNETSDK>true</IsUsingNETSDK>
<PackageVersionOverride Condition="'$(PackageVersionOverride)' == ''">0.0.23</PackageVersionOverride>
<PackageVersionOverride Condition="'$(PackageVersionOverride)' == '' And '$(Configuration)' != 'Local'">0.0.23</PackageVersionOverride>
</PropertyGroup>
<ItemGroup>
<PackageFile Include="./Sdk/*" PackagePath="Sdk/%(Filename)%(Extension)" />
Expand Down

0 comments on commit 81f8c62

Please sign in to comment.