-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
31 lines (26 loc) · 1018 Bytes
/
Directory.Build.props
File metadata and controls
31 lines (26 loc) · 1018 Bytes
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
<Project>
<!-- Common properties for all projects -->
<PropertyGroup>
<!-- Modern defaults -->
<LangVersion>preview</LangVersion>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Product/Company info -->
<Product>Prexonite</Product>
<Company>$(Product)</Company>
<NeutralLanguage>en-US</NeutralLanguage>
<!-- Version -->
<Version>1.99.0</Version>
<!-- Repository info -->
<RepositoryUrl>https://github.com/chklauser/prx.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- Symbol packages -->
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- Assembly signing -->
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)PrexoniteTests\Prexonite.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
</Project>