-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (19 loc) · 1020 Bytes
/
Directory.Build.props
File metadata and controls
24 lines (19 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project>
<Import Project="$(MSBuildThisFileDirectory)/build-common/Common.props" />
<PropertyGroup>
<LangVersion>preview</LangVersion>
<Features>strict</Features>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AvaloniaVersion>12.0.0</AvaloniaVersion>
<AvaloniaSampleVersion>12.0.0</AvaloniaSampleVersion>
<!-- CS0067: The event '' is never used -->
<!-- NU1900: Error occurred while getting package vulnerability data -->
<!-- NU5104: A stable release of a package should not have a prerelease dependency -->
<!-- NU1801: Unable to load the service index (XPF) -->
<NoWarn>$(NoWarn);CS0067;NU1900;NU5104;NU1902;NU1903;NU1801</NoWarn>
<RepoRoot Condition="'$(RepoRoot)' == ''">$(MSBuildThisFileDirectory)</RepoRoot>
<PackageOutputPath>$(RepoRoot)\artifacts\packages</PackageOutputPath>
</PropertyGroup>
</Project>