2021-01-05 16:43:02 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<RootNamespace>Sunny.UI.Demo</RootNamespace>
|
|
|
|
|
<ApplicationIcon>SunnyUI.ico</ApplicationIcon>
|
2021-11-19 13:41:26 +08:00
|
|
|
|
<AssemblyVersion>3.0.9.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>3.0.9.0</FileVersion>
|
|
|
|
|
<Version>3.0.9</Version>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
<Authors>SunnyUI</Authors>
|
|
|
|
|
<Company>SunnyUI.Net</Company>
|
|
|
|
|
<Copyright>Copyright ©SunnyUI.Net 2012-2021</Copyright>
|
|
|
|
|
<PackageProjectUrl>https://gitee.com/yhuse/SunnyUI</PackageProjectUrl>
|
2021-08-17 16:55:01 +08:00
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
2021-01-06 13:57:41 +08:00
|
|
|
|
<OutputPath>bin\</OutputPath>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2021-01-06 13:57:41 +08:00
|
|
|
|
<OutputPath>bin\</OutputPath>
|
2021-01-05 16:43:02 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-19 13:41:26 +08:00
|
|
|
|
<PackageReference Include="SunnyUI" Version="3.0.9" />
|
2021-01-05 16:43:02 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|