-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Directory.Build.props
48 lines (46 loc) · 2.46 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project>
<PropertyGroup>
<Product>Celerity</Product>
<Description>$(Product) is an expressive programming language for writing concurrent and maintainable software.</Description>
<Company>Vezel</Company>
<Authors>$(Company) Contributors</Authors>
<Copyright>Copyright © $(Authors)</Copyright>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AnalysisLevel>latest-all</AnalysisLevel>
<ApplicationIcon>$(MSBuildThisFileDirectory)celerity.ico</ApplicationIcon>
<DisableRuntimeMarshalling>true</DisableRuntimeMarshalling>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<EnablePackageValidation>true</EnablePackageValidation>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<ImplicitUsings>true</ImplicitUsings>
<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
<LanguageStandard>gnu23</LanguageStandard>
<LangVersion>latest</LangVersion>
<MicrosoftExtensions>true</MicrosoftExtensions>
<!-- TODO: Remove when -err is re-enabled in Directory.Build.rsp. -->
<MSBuildTreatWarningsAsErrors>true</MSBuildTreatWarningsAsErrors>
<Nullable>enable</Nullable>
<PackRelease>false</PackRelease>
<PackageIcon>celerity.png</PackageIcon>
<PackageLicenseExpression>0BSD</PackageLicenseExpression>
<PackageProjectUrl>https://docs.vezel.dev/celerity</PackageProjectUrl>
<PackageReadmeFile>PACKAGE.md</PackageReadmeFile>
<PolySharpIncludeRuntimeSupportedAttributes>true</PolySharpIncludeRuntimeSupportedAttributes>
<PublishRelease>false</PublishRelease>
<RepositoryUrl>https://github.com/vezel-dev/celerity.git</RepositoryUrl>
<SymbolVisibility>Hidden</SymbolVisibility>
<TargetFramework>net9.0</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<UnicodeEnvironment>true</UnicodeEnvironment>
</PropertyGroup>
<PropertyGroup>
<UseArtifactsOutput>true</UseArtifactsOutput>
<ArtifactsPath>$(MSBuildThisFileDirectory)out</ArtifactsPath>
<ArtifactsProjectName>$([MSBuild]::MakeRelative('$(MSBuildThisFileDirectory)', '$(MSBuildProjectDirectory)'))</ArtifactsProjectName>
<ArtifactsPublishOutputName>pub</ArtifactsPublishOutputName>
<ArtifactsPackageOutputName>pkg/dotnet</ArtifactsPackageOutputName>
</PropertyGroup>
</Project>