Skip to content

Commit 1b5a55a

Browse files
committed
Fix assembly version after converting projects to SDK style
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.
1 parent 8bf09ce commit 1b5a55a

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

Mono.Debugger.Soft/Mono.Debugger.Soft.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<DebugType>embedded</DebugType>
1111
<WarningLevel>4</WarningLevel>
1212
<ConsolePause>False</ConsolePause>
13+
<AssemblyVersion>0.0.0.0</AssemblyVersion>
1314
</PropertyGroup>
1415

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

Mono.Debugging.Soft/Mono.Debugging.Soft.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<DocumentationFile>bin\$(Configuration)\Mono.Debugging.Soft.xml</DocumentationFile>
99
<DebugSymbols>True</DebugSymbols>
1010
<DebugType>embedded</DebugType>
11+
<AssemblyVersion>0.0.0.0</AssemblyVersion>
1112
</PropertyGroup>
1213

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

Mono.Debugging/Mono.Debugging.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<DocumentationFile>bin\$(Configuration)\Mono.Debugging.xml</DocumentationFile>
1212
<DebugSymbols>True</DebugSymbols>
1313
<DebugType>embedded</DebugType>
14+
<AssemblyVersion>0.0.0.0</AssemblyVersion>
1415
</PropertyGroup>
1516

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

0 commit comments

Comments
 (0)