Skip to content

Commit

Permalink
Fix assembly version after converting projects to SDK style
Browse files Browse the repository at this point in the history
SDK style projects set the assembly version to 1.0.0.0 by
default. Classic projects use 0.0.0.0 as the assembly version.
Setting the version to 0.0.0.0 to avoid compatibility warnings.
  • Loading branch information
mrward committed Feb 10, 2021
1 parent 8bf09ce commit 1b5a55a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Mono.Debugger.Soft/Mono.Debugger.Soft.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<DebugType>embedded</DebugType>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</PropertyGroup>

<Import Project="..\Mono.Debugging.settings" />
Expand Down
1 change: 1 addition & 0 deletions Mono.Debugging.Soft/Mono.Debugging.Soft.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<DocumentationFile>bin\$(Configuration)\Mono.Debugging.Soft.xml</DocumentationFile>
<DebugSymbols>True</DebugSymbols>
<DebugType>embedded</DebugType>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</PropertyGroup>

<Import Project="..\Mono.Debugging.settings" />
Expand Down
1 change: 1 addition & 0 deletions Mono.Debugging/Mono.Debugging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<DocumentationFile>bin\$(Configuration)\Mono.Debugging.xml</DocumentationFile>
<DebugSymbols>True</DebugSymbols>
<DebugType>embedded</DebugType>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</PropertyGroup>

<Import Project="..\Mono.Debugging.settings" />
Expand Down

0 comments on commit 1b5a55a

Please sign in to comment.