-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
27 lines (24 loc) · 1.11 KB
/
Directory.Build.props
File metadata and controls
27 lines (24 loc) · 1.11 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
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<DebugType>full</DebugType>
<InvariantGlobalization>true</InvariantGlobalization>
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisMode>recommended</AnalysisMode>
<AssemblyTitle>Tool for ACME Quiz MatchMaker</AssemblyTitle>
<Authors>Bryan Wilhelm</Authors>
<Product>Tool for ACME Quiz MatchMaker</Product>
<Description>A command line tool for generating reports from ACME Quiz MatchMaker results XML files.</Description>
<Copyright>Copyright (c) 2016-$([System.DateTime]::Now.Year) Bryan Wilhelm</Copyright>
<PackageProjectUrl>https://github.com/brwml/MatchMakerTool</PackageProjectUrl>
<RepositoryUrl>https://github.com/brwml/MatchMakerTool</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<!-- GitVersion Configuration -->
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GitVersion.MsBuild" />
</ItemGroup>
</Project>