-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
39 lines (39 loc) · 1.75 KB
/
Copy pathDirectory.Build.props
File metadata and controls
39 lines (39 loc) · 1.75 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
37
38
39
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
<NoWarn>$(NoWarn);NU1507</NoWarn>
<VersionPrefix>1.0.34</VersionPrefix>
<Authors>Wiesław Šoltés</Authors>
<Company>Wiesław Šoltés</Company>
<Copyright>Copyright © Wiesław Šoltés 2025</Copyright>
<PackageProjectUrl>https://github.com/wieslawsoltes/WebScene</PackageProjectUrl>
<RepositoryUrl>https://github.com/wieslawsoltes/WebScene</RepositoryUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>webscene-logo.jpg</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>portable</DebugType>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<AnalysisLevel>latest</AnalysisLevel>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<AvaloniaVersion>11.3.4</AvaloniaVersion>
<!-- Opt-in host experiment only; shipping WebScene continues to target v11. -->
<AvaloniaVersion Condition="'$(WebSceneAvalonia12Sample)' == 'true'">12.1.1</AvaloniaVersion>
<DefineConstants Condition="'$(WebSceneAvalonia12Sample)' == 'true'">$(DefineConstants);WEBSCENE_AVALONIA12</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)LICENSE"
Pack="true"
PackagePath=""
Visible="false" />
<None Include="$(MSBuildThisFileDirectory)docs\assets\webscene-logo.jpg"
Pack="true"
PackagePath="webscene-logo.jpg"
Visible="false" />
</ItemGroup>
</Project>