-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (29 loc) · 1.21 KB
/
Directory.Build.props
File metadata and controls
36 lines (29 loc) · 1.21 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
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.7.0-alpha</Version>
<Authors>Texnomic</Authors>
<Company>Texnomic</Company>
<Copyright>Texnomic, Copyrights © 2025</Copyright>
<RepositoryUrl>https://github.com/Texnomic/SecureDNS</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<PackageTags>dns sdns https udp tcp dnscrypt dou dot doh</PackageTags>
<PackageId>$(ProjectName)</PackageId>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Texnomic/SecureDNS</PackageProjectUrl>
<Product>$(ProjectName)</Product>
<Description>$(ProjectName)</Description>
<!-- Enable Central Package Management -->
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
</Project>