-
Notifications
You must be signed in to change notification settings - Fork 10
/
Directory.Build.Props
33 lines (31 loc) · 1.13 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
<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>False</GeneratePackageOnBuild>
<LangVersion>9.0</LangVersion>
<Version>1.0.0</Version>
<FileVersion>1.0.0</FileVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<Copyright>Copyright © HeBianGu 2024-2024</Copyright>
<Authors>HeBianGu </Authors>
<RepositoryUrl>https://github.com/HeBianGu/WPF-Diagram</RepositoryUrl>
<PackageProjectUrl>https://github.com/HeBianGu/WPF-Diagram</PackageProjectUrl>
</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>
</Project>