This repository was archived by the owner on Nov 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSMod3.props
More file actions
36 lines (29 loc) · 1.3 KB
/
SMod3.props
File metadata and controls
36 lines (29 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<NoWarn>$(NoWarn);CS1573;CS1591;CS8002</NoWarn>
</PropertyGroup>
<PropertyGroup>
<Copyright>Copyright © iRebbok 2020 - $([System.DateTime]::Now.ToString("yyyy"))</Copyright>
<RepositoryUrl>https://github.com/iRebbok/SMod3</RepositoryUrl>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<PropertyGroup>
<!-- Custom output path for projects -->
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath>
<OutputPath>$(MSBuildThisFileDirectory)\bin\$(Configuration)\</OutputPath>
<!-- Disable dependency file generation -->
<GenerateDependencyFile>False</GenerateDependencyFile>
<!-- Assembly singing -->
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\SMod3.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration) == 'Release'">
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
</Project>