-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnoGroupBox.csproj
More file actions
71 lines (52 loc) · 2.4 KB
/
UnoGroupBox.csproj
File metadata and controls
71 lines (52 loc) · 2.4 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<Project Sdk="Uno.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net9.0-ios;net9.0-android;net9.0-windows10.0.26100;net9.0-browserwasm;net9.0-desktop</TargetFrameworks>
<UnoSingleProject>true</UnoSingleProject>
<OutputType>Library</OutputType>
<!-- Ensures the .xr.xml files are generated in a proper layout folder -->
<GenerateLibraryLayout>true</GenerateLibraryLayout>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!--
UnoFeatures let's you quickly add and manage implicit package references based on the features you want to use.
https://aka.platform.uno/singleproject-features
-->
<UnoFeatures>
SkiaRenderer;
</UnoFeatures>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Uno GroupBox</Title>
<Authors>Jungbluth</Authors>
<Description>An WPF-like Groupbox for Uno Platform.
Supports Theming.</Description>
<PackageProjectUrl>https://github.com/Jungbluth11/UnoGroupBox</PackageProjectUrl>
<RepositoryUrl>https://github.com/Jungbluth11/UnoGroupBox</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>uno platform groupbox</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<AssemblyVersion>1.1.3.0</AssemblyVersion>
<FileVersion>1.1.3.0</FileVersion>
<Version>1.1.3</Version>
</PropertyGroup>
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">
<!--
If you encounter this error message:
error NETSDK1148: A referenced assembly was compiled using a newer version of Microsoft.Windows.SDK.NET.dll.
Please update to a newer .NET SDK in order to reference this assembly.
This means that the two packages below must be aligned with the "build" version number of
the "Microsoft.Windows.SDK.BuildTools" package above, and the "revision" version number
must be the highest found in https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref.
-->
<!-- <FrameworkReference Update="Microsoft.Windows.SDK.NET.Ref" RuntimeFrameworkVersion="10.0.22621.28" />
<FrameworkReference Update="Microsoft.Windows.SDK.NET.Ref" TargetingPackVersion="10.0.22621.28" /> -->
</ItemGroup>
<ItemGroup>
<None Include="LICENSE.txt" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<Page Update="Themes\Fluent.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
</Project>