Skip to content

Commit

Permalink
move package info to project file
Browse files Browse the repository at this point in the history
  • Loading branch information
w-ahmad authored Nov 21, 2024
1 parent 72f56aa commit aa621b9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 26 deletions.
24 changes: 0 additions & 24 deletions src/Directory.Build.targets

This file was deleted.

24 changes: 22 additions & 2 deletions src/WinUI.TableView/WinUI.TableView.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,30 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="PackageInfo">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<PackageId>WinUI.TableView</PackageId>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Description>TableView control for WinUI.</Description>
<PackageTags>WinUI, WinAppSDK, Windows, XAML, TableView, DataGrid</PackageTags>
<Product>WinUI TableView Control</Product>
<RepositoryUrl>https://github.com/w-ahmad/WinUI3.TableView</RepositoryUrl>
<PackageProjectUrl>https://github.com/w-ahmad/WinUI3.TableView</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageOutputPath>$(MSBuildThisFileDirectory)..\..\artifacts\NuGet\$(Configuration)\</PackageOutputPath>
<Authors>w-ahmad - https://github.com/w-ahmad</Authors>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CommunityToolkit.WinUI.Behaviors" Version="8.0.240109" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240227000" />
</ItemGroup>

<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="\" />
</ItemGroup>
</Project>

0 comments on commit aa621b9

Please sign in to comment.