-
Notifications
You must be signed in to change notification settings - Fork 3
/
Directory.Build.props
61 lines (54 loc) · 2.75 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project>
<PropertyGroup>
<Product>Xenial.Tasty</Product>
<MinVerTagPrefix>v</MinVerTagPrefix>
<LangVersion>preview</LangVersion>
<Copyright>Copyright © Xenial, Manuel Grundner $([System.DateTime]::Today.ToString('yyyy'))</Copyright>
<Authors>Xenial, Manuel Grundner</Authors>
<FullFrameworkVersion>net462</FullFrameworkVersion>
<NetStandardVersion>netstandard2.0</NetStandardVersion>
<NetCoreVersion>net8.0</NetCoreVersion>
<TargetFrameworks>$(NetStandardVersion);$(FullFrameworkVersion)</TargetFrameworks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageOutputPath>$(MSBuildThisFileDirectory)artifacts\nuget</PackageOutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageProjectUrl>https://tasty.xenial.io</PackageProjectUrl>
<RepositoryUrl>https://github.com/xenial-io/Tasty</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageIcon>icon-64x64.png</PackageIcon>
<PackageIconUrl>https://blog.delegate.at/img/favicon.ico</PackageIconUrl>
<Publish>false</Publish>
<IsPackTarget>false</IsPackTarget>
<NoWarn>$(NoWarn);NU5105</NoWarn>
<Nullable>enable</Nullable>
<SatelliteResourceLanguages>en-US</SatelliteResourceLanguages>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)CodeFormatting.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
<TargetFrameworks>$(NetStandardVersion)</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == '$(FullFrameworkVersion)'">
<DefineConstants>$(DefineConstants);FULL_FRAMEWORK</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)img\icon-64x64.png" Pack="true" PackagePath="\" Visible="false" />
<None Include="$(MSBuildThisFileDirectory)\LICENSE.md" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
<ItemGroup>
<ProjectCapability Include="DynamicDependentFile" />
<ProjectCapability Include="DynamicFileNesting" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == '$(FullFrameworkVersion)'">
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
</Project>