-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
28 lines (23 loc) · 1.05 KB
/
Directory.Build.props
File metadata and controls
28 lines (23 loc) · 1.05 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
<Project>
<PropertyGroup>
<Product>idunno.org Authentication</Product>
<MaintainerEmail>github.com@idunno.org</MaintainerEmail>
<RepositoryUrl>https://github.com/blowdart/idunno.Authentication</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)key.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Company>idunno.org</Company>
<Authors>Barry Dorrans</Authors>
<Copyright>Barry Dorrans</Copyright>
</PropertyGroup>
<PropertyGroup>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' != 'netstandard2.0'">
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>