Skip to content

Commit a6dfb1c

Browse files
committed
Convert ResourceManager to .NET Core 3.0
1 parent b1439c8 commit a6dfb1c

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed
Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<ItemGroup>
4-
<Compile Include="..\CommonAssemblyInfo.cs" Link="Properties\CommonAssemblyInfo.cs" />
5-
</ItemGroup>
1+
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
62

7-
<ItemGroup>
8-
<Reference Include="System.Xml" />
9-
</ItemGroup>
3+
<PropertyGroup>
4+
<OutputType>Library</OutputType>
5+
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
6+
<UseWindowsForms>true</UseWindowsForms>
7+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
8+
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
9+
<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
10+
</PropertyGroup>
1011

1112
<ItemGroup>
1213
<PackageReference Include="SmartFormat.NET" Version="$(SmartFormatNETVersion)" />
@@ -18,10 +19,4 @@
1819
<ProjectReference Include="..\Plugins\GitUIPluginInterfaces\GitUIPluginInterfaces.csproj" />
1920
</ItemGroup>
2021

21-
<ItemGroup>
22-
<!-- Resources -->
23-
<EmbeddedResource Update="Properties\Resources.resx" Generator="ResXFileCodeGenerator" LastGenOutput="Resources.Designer.cs" />
24-
<Compile Update="Properties\Resources.Designer.cs" AutoGen="True" DependentUpon="Resources.resx" DesignTime="True" />
25-
</ItemGroup>
26-
2722
</Project>

0 commit comments

Comments
 (0)