-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
28 lines (23 loc) · 1005 Bytes
/
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
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- Project settings -->
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Platforms>AnyCPU</Platforms>
<!-- Package information -->
<Version>0.2.0-alpha.1</Version>
<Authors>Hamlet Tanyavong</Authors>
<Copyright>Copyright (c) 2024-present Hamlet Tanyavong</Copyright>
<PackageProjectUrl>https://physics.hamlettanyavong.com</PackageProjectUrl>
<RepositoryUrl>https://github.com/HamletTanyavong/Physics.NET</RepositoryUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<!-- Build -->
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Deterministic>true</Deterministic>
<!-- Documentation file -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>1591</NoWarn>
</PropertyGroup>
</Project>