-
Notifications
You must be signed in to change notification settings - Fork 7
/
Directory.Build.Props
41 lines (39 loc) · 1.38 KB
/
Directory.Build.Props
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
<Project>
<PropertyGroup>
<UseWPF>true</UseWPF>
<PackageIcon>logo.png</PackageIcon>
<!--<TargetFrameworks>net6.0-windows;net7.0-windows;</TargetFrameworks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>-->
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<TargetFrameworks>net7.0-windows</TargetFrameworks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<LangVersion>10.0</LangVersion>
<Version>1.0.2</Version>
<FileVersion>1.0.2</FileVersion>
<AssemblyVersion>1.0.2</AssemblyVersion>
<Copyright>Copyright © HeBianGu 2023-2024</Copyright>
<Authors>HeBianGu </Authors>
<RepositoryUrl>https://github.com/HeBianGu/WPF-Control</RepositoryUrl>
<PackageProjectUrl>https://github.com/HeBianGu/WPF-Control</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>WPF轻量控件和皮肤库</Description>
</PropertyGroup>
<ItemGroup>
<Resource Include="**\*.png" />
<Resource Include="**\*.jpg" />
<Resource Include="**\*.cur" />
<Resource Include="**\*.ico" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\Document\logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>