forked from MikeG621/Common
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommon.csproj
More file actions
23 lines (21 loc) · 979 Bytes
/
Copy pathCommon.csproj
File metadata and controls
23 lines (21 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<AssemblyName>Idmr.Common</AssemblyName>
<RootNamespace>Idmr.Common</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<UseSystemDrawing>true</UseSystemDrawing>
<!-- The compatibility fork keeps the upstream source unchanged where possible. -->
<EnableNETAnalyzers>false</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>false</EnforceCodeStyleInBuild>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
<NoWarn>$(NoWarn);CS1591;SYSLIB0011;SYSLIB0050;SYSLIB0051;CA1416</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="10.0.0" />
</ItemGroup>
</Project>