-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (25 loc) · 1.47 KB
/
Directory.Build.props
File metadata and controls
26 lines (25 loc) · 1.47 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
<Project>
<PropertyGroup>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Authors>ExplodingUFO</Authors>
<RepositoryUrl>https://github.com/ExplodingUFO/AsterGraph.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/ExplodingUFO/AsterGraph.git</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>Avalonia;AvaloniaUI;NodeGraph;GraphEditor;MVVM;SDK</PackageTags>
<Version>0.11.0-beta</Version>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Keep non-packable projects quiet while publishable-package CS1591 debt is made explicit at project scope. -->
<NoWarn Condition="'$(IsPackable)' != 'true'">$(NoWarn);CS1591</NoWarn>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<!-- Keep generated audit snapshots out of SDK compile globs so verification builds stay deterministic. -->
<DefaultItemExcludes>$(DefaultItemExcludes);$(MSBuildProjectDirectory)\artifacts\**</DefaultItemExcludes>
</PropertyGroup>
<PropertyGroup Condition="'$(IsPackable)' == 'true'">
<!-- Run SDK-integrated package validation for the publishable library surface during pack. -->
<EnablePackageValidation>true</EnablePackageValidation>
</PropertyGroup>
</Project>