feat: add icon to package.

This commit is contained in:
rabbitism
2024-09-20 20:46:11 +08:00
parent bcb3b0e581
commit 0df52ec2ef

View File

@@ -1,32 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>netstandard2.0;net8</TargetFrameworks> <TargetFrameworks>netstandard2.0;net8</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion> <LangVersion>latest</LangVersion>
<Authors>WCKYWCKF, IRIHI Technology</Authors> <Authors>WCKYWCKF, IRIHI Technology</Authors>
<PackageId>Irihi.Ursa.ReactiveUIExtension</PackageId> <PackageId>Irihi.Ursa.ReactiveUIExtension</PackageId>
<PackageIcon>irihi.png</PackageIcon> <PackageIcon>irihi.png</PackageIcon>
<PackageProjectUrl>https://github.com/irihitech/Ursa.Avalonia</PackageProjectUrl> <PackageProjectUrl>https://github.com/irihitech/Ursa.Avalonia</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression> <PackageLicenseExpression>MIT</PackageLicenseExpression>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Description>This is a Ursa expansion. This package integrates and is compatible with UrsaWindow and UrsaView with Avalonia.ReactiveUI. [Avalonia.ReactiveUI See: https://docs.avaloniaui.net/zh-Hans/docs/concepts/reactiveui/] <Description>This is a Ursa expansion. This package integrates and is compatible with UrsaWindow and UrsaView with Avalonia.ReactiveUI. [Avalonia.ReactiveUI See: https://docs.avaloniaui.net/zh-Hans/docs/concepts/reactiveui/]
这个是一个Ursa拓展包。这个包整合并互相兼容了UrsaWindow和UrsaView与Avalonia.ReactiveUI的功能。【Avalonia.ReactiveUI参见https://docs.avaloniaui.net/docs/concepts/reactiveui/】</Description> 这个是一个Ursa拓展包。这个包整合并互相兼容了UrsaWindow和UrsaView与Avalonia.ReactiveUI的功能。【Avalonia.ReactiveUI参见https://docs.avaloniaui.net/docs/concepts/reactiveui/】
<Version>1.0.1</Version> </Description>
<Copyright></Copyright> <Version>1.0.1</Version>
<RepositoryUrl>https://github.com/irihitech/Ursa.Avalonia</RepositoryUrl> <Copyright></Copyright>
<IncludeSymbols>true</IncludeSymbols> <RepositoryUrl>https://github.com/irihitech/Ursa.Avalonia</RepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat> <IncludeSymbols>true</IncludeSymbols>
</PropertyGroup> <SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Avalonia.ReactiveUI" Version="11.1.1" /> <PackageReference Include="Avalonia.ReactiveUI" Version="11.1.1"/>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\Ursa\Ursa.csproj" /> <ProjectReference Include="..\Ursa\Ursa.csproj"/>
</ItemGroup> <None Include="irihi.png" Pack="true" PackagePath=""/>
</ItemGroup>
</Project> </Project>