-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
20 lines (20 loc) · 851 Bytes
/
Directory.Build.props
File metadata and controls
20 lines (20 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<PropertyGroup>
<Authors>Tristan Stenner</Authors>
<Company>IMPS UKSH Kiel</Company>
<Product>HistFileFixer</Product>
<RepositoryUrl>https://github.com/tstenner/histfilefixer</RepositoryUrl>
<Version>0.2</Version>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<OutputPath>$(SolutionDir)bin\$(Configuration)_$(TargetFramework)</OutputPath>
<OutDir>$(SolutionDir)obj\$(Configuration)_$(TargetFramework)</OutDir>
<TargetFrameworks>net48;netcoreapp3.1</TargetFrameworks>
<LangVersion>8</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>