-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRadix.props
45 lines (41 loc) · 1.93 KB
/
Radix.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
<Project>
<PropertyGroup>
<Authors>Maurice CGP Peters</Authors>
<Org>Radix</Org>
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
<RootNamespace>$(AssemblyName)</RootNamespace>
<DebugType>full</DebugType>
<Nullable>enable</Nullable>
<EnablePreviewFeatures>false</EnablePreviewFeatures>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<LangVersion>preview</LangVersion>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<ProjectUrl>https://github.com/MCGPPeters/radix</ProjectUrl>
<PackageReleaseNotes></PackageReleaseNotes>
<BUILD_NUMBER Condition="'$(BUILD_NUMBER)' == ''">0</BUILD_NUMBER>
<MinVerBuildMetadata>build.$(BUILD_NUMBER)</MinVerBuildMetadata>
<NoWarn>CS1591, CS8981, S101</NoWarn>
<IsTestProject>false</IsTestProject>
<RepositoryUrl>https://github.com/MCGPPeters/radix.git</RepositoryUrl>
<ImplicitUsings>true</ImplicitUsings>
<WarningsAsErrors>8600;8601;8602;8604;8625;8618</WarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net7.0'">
<FrameworkVersion>7.0.0</FrameworkVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(SolutionDir)/Using.cs" Link="Using.cs" Visible="false" />
</ItemGroup>
<PropertyGroup>
<NoWarn>1701;1702;1998</NoWarn>
<WarningsAsErrors>8601;8602;8603;8604;8600;8618;8622;8625;8765</WarningsAsErrors>
</PropertyGroup>
</Project>