-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
50 lines (44 loc) · 1.81 KB
/
Directory.Build.props
File metadata and controls
50 lines (44 loc) · 1.81 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project>
<PropertyGroup>
<Company>OpenShock</Company>
<Product>$(Company).$(MSBuildProjectName)</Product>
<Version>3.15.2</Version>
<Title>$(Product)</Title>
<Authors>OpenShock</Authors>
<Description>Backend for the OpenShock solution, that enables controlling shock collars over the internet.</Description>
<RepositoryUrl>https://github.com/OpenShock/API</RepositoryUrl>
<PackageProjectUrl>https://openshock.org</PackageProjectUrl>
<PackageId>$(Product.Replace(" ", "_"))</PackageId>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<PackageTags>openshock</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="/"/>
</ItemGroup>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>Latest</LangVersion>
<Nullable>enable</Nullable>
<AssemblyName>$(Product)</AssemblyName>
<RootNamespace>$(Product.Replace(" ", "_"))</RootNamespace>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<UserSecretsId>a2109c1e-fb11-44d7-8127-346ef60cb9a5</UserSecretsId>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<!-- Disable Missing XML comment warning -->
<NoWarn>1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- Disable Prefer framework type warning -->
<NoWarn>$(NoWarn);IDE0049</NoWarn>
</PropertyGroup>
</Project>