|
1 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
2 |
| - <PropertyGroup Label="PackageInfo"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup Condition="'$(Configuration)' == 'Release'"> |
3 | 3 | <PackageId>WinUI.TableView</PackageId>
|
| 4 | + <IncludeSymbols>true</IncludeSymbols> |
| 5 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 6 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 7 | + <Description>TableView control for WinUI.</Description> |
| 8 | + <PackageTags>WinUI, WinAppSDK, Windows, XAML, TableView, DataGrid</PackageTags> |
| 9 | + <Product>WinUI TableView Control</Product> |
| 10 | + <RepositoryUrl>https://github.com/w-ahmad/WinUI3.TableView</RepositoryUrl> |
| 11 | + <PackageProjectUrl>https://github.com/w-ahmad/WinUI3.TableView</PackageProjectUrl> |
| 12 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 13 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 14 | + <PackageOutputPath>$(MSBuildThisFileDirectory)..\..\artifacts\NuGet\$(Configuration)\</PackageOutputPath> |
| 15 | + <Authors>w-ahmad - https://github.com/w-ahmad</Authors> |
4 | 16 | </PropertyGroup>
|
5 | 17 |
|
6 | 18 | <ItemGroup>
|
7 | 19 | <PackageReference Include="CommunityToolkit.WinUI.Behaviors" Version="8.0.240109" />
|
8 | 20 | <PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240227000" />
|
9 | 21 | </ItemGroup>
|
| 22 | + |
| 23 | + <ItemGroup Condition="'$(Configuration)' == 'Release'"> |
| 24 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> |
| 25 | + <PrivateAssets>all</PrivateAssets> |
| 26 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
| 27 | + </PackageReference> |
| 28 | + <None Include="..\..\README.md" Pack="true" PackagePath="\" /> |
| 29 | + </ItemGroup> |
10 | 30 | </Project>
|
0 commit comments