forked from Krypton-Suite/Standard-Toolkit-Demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuto Shrinking Groups 2022.csproj
40 lines (40 loc) · 1.87 KB
/
Auto Shrinking Groups 2022.csproj
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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFrameworks>net48;net6.0-windows;net7.0-windows;net8.0-windows</TargetFrameworks>
<OutputType>WinExe</OutputType>
<RootNamespace>AutoShrinkingGroups</RootNamespace>
<AssemblyName>Auto Shrinking Groups</AssemblyName>
<ApplicationIcon>Krypton.ico</ApplicationIcon>
<UseApplicationTrust>false</UseApplicationTrust>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<PlatformTarget>AnyCPU</PlatformTarget>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<NeutralLanguage>en</NeutralLanguage>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<WarningLevel>6</WarningLevel>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
</PropertyGroup>
<ItemGroup>
<Content Include="Krypton.ico" />
</ItemGroup>
<Choose>
<When Condition="'$(SolutionName.Endswith(`Nuget`))'">
<ItemGroup>
<PackageReference Include="Krypton.Toolkit.Canary" Version="80.23.8.233-beta" />
<PackageReference Include="Krypton.Ribbon.Canary" Version="80.23.8.233-beta" />
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<ProjectReference Include="..\..\..\..\Standard-Toolkit\Source\Krypton Components\Krypton.Toolkit\Krypton.Toolkit 2022.csproj" />
<ProjectReference Include="..\..\..\..\Standard-Toolkit\Source\Krypton Components\Krypton.Ribbon\Krypton.Ribbon 2022.csproj" />
</ItemGroup>
</Otherwise>
</Choose>
<PropertyGroup>
<OutputPath>..\..\..\Binaries\Krypton Demos\$(Configuration)\</OutputPath>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
</Project>