-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
39 lines (35 loc) · 1.77 KB
/
Directory.Build.props
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
37
38
39
<Project>
<PropertyGroup>
<IsTestProject Condition="'$(MsTestToolsTargets)'==''">false</IsTestProject>
<IsTestProject Condition="'$(IsTestProject)'==''">true</IsTestProject>
<!-- Supported Platforms -->
<TargetFrameworks Condition="'$(IsTestProject)'!='true'">netstandard2.0;net8.0;net9.0</TargetFrameworks>
<!-- General properties -->
<Company>Carl de Billy</Company>
<Product>Yllibed HttpServer</Product>
<Authors>Carl de Billy</Authors>
<Copyright Condition="'$(Copyright)'==''">Copyright (C) 2017-$([System.DateTime]::Now.ToString(`yyyy`)) Carl de Billy - all rights reserved</Copyright>
<RepositoryUrl>https://github.com/carldebilly/Yllibed.HttpServer</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- General build properties -->
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<LangVersion>12</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.146" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.25" PrivateAssets="All" />
<PackageReference Include="Meziantou.Analyzer" Version="2.0.180">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>