2021-01-05 16:43:02 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<PropertyGroup>
|
2021-08-12 21:23:59 +08:00
|
|
|
|
<TargetFrameworks>net5.0-windows;netcoreapp3.1;net462;net40</TargetFrameworks>
|
2021-07-15 13:54:31 +08:00
|
|
|
|
<LangVersion>9.0</LangVersion>
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<ProjectGuid>{AB1CB247-E20B-4CBE-B269-570ADDD96C53}</ProjectGuid>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<RootNamespace>Sunny.UI</RootNamespace>
|
|
|
|
|
<Description>SunnyUI.Net 是基于.Net Framework 4.0+、.Net Core3.1、.Net 5 框架的 C# WinForm 开源控件库、工具类库、扩展类库、多页面开发框架。</Description>
|
|
|
|
|
<Copyright>CopyRight © SunnyUI.Net 2012-2021</Copyright>
|
|
|
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
2021-08-12 21:23:59 +08:00
|
|
|
|
<Version>3.0.6</Version>
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<Authors>ShenYonghua</Authors>
|
|
|
|
|
<Company>SunnyUI.Net</Company>
|
|
|
|
|
<PackageId>SunnyUI</PackageId>
|
|
|
|
|
<PackageProjectUrl>https://gitee.com/yhuse/SunnyUI</PackageProjectUrl>
|
|
|
|
|
<RepositoryUrl>https://gitee.com/yhuse/SunnyUI</RepositoryUrl>
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
|
|
|
|
<PackageIcon>SunnyUI.png</PackageIcon>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<OutputPath>..\Bin\</OutputPath>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<DocumentationFile></DocumentationFile>
|
|
|
|
|
</PropertyGroup>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<OutputPath>..\Bin\</OutputPath>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<DocumentationFile></DocumentationFile>
|
|
|
|
|
</PropertyGroup>
|
2021-01-19 23:00:28 +08:00
|
|
|
|
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net5.0-windows|AnyCPU'">
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
</PropertyGroup>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<ItemGroup>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
<None Include="..\LICENSE">
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath></PackagePath>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
</None>
|
|
|
|
|
<None Include="..\SunnyUI.png">
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath></PackagePath>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
</None>
|
2021-04-18 22:27:40 +08:00
|
|
|
|
</ItemGroup>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="Font\ElegantIcons.ttf" />
|
2021-06-16 11:41:39 +08:00
|
|
|
|
<EmbeddedResource Include="Font\fa-brands-400.ttf" />
|
|
|
|
|
<EmbeddedResource Include="Font\fa-regular-400.ttf" />
|
|
|
|
|
<EmbeddedResource Include="Font\fa-solid-900.ttf" />
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<EmbeddedResource Include="Font\FontAwesome.ttf" />
|
|
|
|
|
</ItemGroup>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<ItemGroup>
|
2021-08-12 21:23:59 +08:00
|
|
|
|
<PackageReference Include="SunnyUI.Common" Version="3.0.6" />
|
2021-04-18 22:27:40 +08:00
|
|
|
|
</ItemGroup>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net40'">
|
|
|
|
|
<Reference Include="System.Windows.Forms" />
|
|
|
|
|
<Reference Include="System.Web.Extensions" />
|
|
|
|
|
<Reference Include="System.Design" />
|
|
|
|
|
</ItemGroup>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
|
2021-08-12 21:23:59 +08:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
|
2021-06-01 22:34:37 +08:00
|
|
|
|
<Reference Include="System.Windows.Forms" />
|
|
|
|
|
<Reference Include="System.Web.Extensions" />
|
|
|
|
|
<Reference Include="System.Design" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
2021-01-05 16:43:02 +08:00
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
2021-04-18 22:27:40 +08:00
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
|
|
|
|
|
|
2021-04-18 22:27:40 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
|
|
|
|
|
</Project>
|