-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
71 lines (62 loc) · 2.66 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
62
63
64
65
66
67
68
69
70
71
<Project>
<PropertyGroup Label="General Project Details">
<TargetFrameworks>
net4.8;
net6.0;
net7.0;
net8.0;
</TargetFrameworks>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<ImplicitUsings>true</ImplicitUsings>
<Title>$(AssemblyName)</Title>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<PackageVersion>$(Version)</PackageVersion>
</PropertyGroup>
<PropertyGroup Label="Compliance">
<AnalysisMode>recommended</AnalysisMode>
<AnalysisLevel>latest-all</AnalysisLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleOnBuild>true</EnforceCodeStyleOnBuild>
</PropertyGroup>
<PropertyGroup Label="Release" Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Label="Package Details">
<Authors>tacosontitan</Authors>
<Copyright>Copyright © 2024 tacosontitan and contibutors</Copyright>
<PackageProjectUrl>https://github.com/tacosontitan/Weatherstack</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReleaseNotesFile>resources/docs/RELEASE_NOTES.md</PackageReleaseNotesFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/tacosontitan/Weatherstack</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<Link>.resources\LICENSE</Link>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<Link>.resources\docs\README.md</Link>
</None>
<None Include="..\..\resources\docs\RELEASE_NOTES.md">
<Pack>False</Pack>
<Link>.resources\docs\RELEASE_NOTES.md</Link>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="PolySharp" Version="1.14.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>