forked from foxminchan/BookWorm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (30 loc) · 1.26 KB
/
Directory.Build.props
File metadata and controls
30 lines (30 loc) · 1.26 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
28
29
30
<Project>
<PropertyGroup Label="Framework">
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Label="Product">
<Product>BookWorm</Product>
<Authors>Nhan Nguyen</Authors>
<PackageLicenseUrl>https://github.com/foxminchan/BookWorm/blob/main/LICENSE</PackageLicenseUrl>
<PackageReadmeFile>https://github.com/foxminchan/BookWorm/blob/main/README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/foxminchan/BookWorm</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
</PropertyGroup>
<PropertyGroup Label="Debug">
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Label="Build">
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
<Nullable>enable</Nullable>
<!-- Temporarily disable security warnings for transitive packages. -->
<NoWarn>NU1608</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>