-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathWinUI.TableView.csproj
More file actions
82 lines (73 loc) · 3.45 KB
/
WinUI.TableView.csproj
File metadata and controls
82 lines (73 loc) · 3.45 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
72
73
74
75
76
77
78
79
80
81
82
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>
net8.0;
net9.0;
net10.0;
</TargetFrameworks>
<LangVersion>12</LangVersion>
<Nullable>enable</Nullable>
<IsAOTCompatible>true</IsAOTCompatible>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">
net8.0-windows10.0.19041.0;
net9.0-windows10.0.19041.0;
net10.0-windows10.0.19041.0;
$(TargetFrameworks);
</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="'$([MSBuild]::GetTargetPlatformIdentifier($(TargetFramework)))' == 'windows'">
<UseWinUI>true</UseWinUI>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<WindowsSdkPackageVersion>10.0.19041.56</WindowsSdkPackageVersion>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>WinUI.TableView.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) != 'windows'">
<PackageReference Include="Uno.WinUI" Version="6.2.87" />
</ItemGroup>
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">
<PackageReference Include="Microsoft.WindowsAppSDK.WinUI" Version="1.8.251222000" />
</ItemGroup>
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) != 'windows'">
<Page Include="**\*.xaml" Exclude="bin\**\*.xaml;obj\**\*.xaml" />
<Compile Update="**\*.xaml.cs">
<DependentUpon>%(Filename)</DependentUpon>
</Compile>
<PRIResource Include="**\*.resw" Exclude="bin\**\*.resw;obj\**\*.resw" />
</ItemGroup>
<ItemGroup>
<Compile Update="TableView.*.cs">
<DependentUpon>TableView.cs</DependentUpon>
</Compile>
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<PackageId>WinUI.TableView</PackageId>
<DebugType>portable</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AllowedOutputExtensionsInPackageBuildOutputFolder>.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<GenerateLibraryLayout>true</GenerateLibraryLayout>
<Description>TableView/DataGrid control for WinUI.</Description>
<PackageTags>WinUI, WinAppSDK, Windows, UNO, XAML, TableView, DataGrid</PackageTags>
<Product>WinUI TableView Control</Product>
<RepositoryUrl>https://github.com/w-ahmad/WinUI.TableView</RepositoryUrl>
<PackageProjectUrl>https://w-ahmad.github.io/WinUI.TableView/</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageOutputPath>$(MSBuildThisFileDirectory)..\artifacts\NuGet\$(Configuration)\</PackageOutputPath>
<Authors>w-ahmad - https://github.com/w-ahmad</Authors>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<None Include="..\README.md" Pack="true" PackagePath="\" />
<None Include="..\package-icon.png" Pack="true" PackagePath="\icon.png"/>
</ItemGroup>
</Project>