Skip to content

Commit

Permalink
* #79
Browse files Browse the repository at this point in the history
  • Loading branch information
PWagner1 committed Jul 3, 2024
1 parent 8a359b1 commit 60b3d90
Show file tree
Hide file tree
Showing 14 changed files with 1,539 additions and 746 deletions.
Original file line number Diff line number Diff line change
@@ -1,49 +1,66 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net48;net481;net6.0-windows;net7.0-windows;net8.0-windows</TargetFrameworks>
<OutputType>WinExe</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>Resources\Krypton.ico</ApplicationIcon>
<RootNamespace>PaletteUpgradeTool</RootNamespace>
<AssemblyName>Palette Upgrade Tool</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<LangVersion>preview</LangVersion>
<PlatformTarget>AnyCPU</PlatformTarget>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<NeutralLanguage>en</NeutralLanguage>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net48;net481;net8.0-windows;net9.0-windows</TargetFrameworks>
<OutputType>WinExe</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>Resources\Krypton.ico</ApplicationIcon>
<RootNamespace>PaletteUpgradeTool</RootNamespace>
<AssemblyName>Palette Upgrade Tool</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<LangVersion>preview</LangVersion>
<PlatformTarget>AnyCPU</PlatformTarget>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<NeutralLanguage>en</NeutralLanguage>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
</PropertyGroup>

<Choose>
<When Condition="'$(Platform)' == 'Nuget'">
<ItemGroup>
<PackageReference Include="Krypton.Toolkit.Canary.Lite" Version="6.0.2106" />
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\Standard-Toolkit\Source\Krypton Components\Krypton.Toolkit\Krypton.Toolkit 2022.csproj" />
</ItemGroup>
</Otherwise>
</Choose>
<Choose>
<When Condition="'$(Platform)' == 'Nuget'">
<ItemGroup>
<PackageReference Include="Krypton.Toolkit.Canary" Version="90.24.6.176-beta" />
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\Standard-Toolkit\Source\Krypton Components\Krypton.Toolkit\Krypton.Toolkit 2022.csproj" />
</ItemGroup>
</Otherwise>
</Choose>

<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
<PackageIcon>Krypton Icon 128 x 128.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>

<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<None Update="Resources\Krypton Icon 128 x 128.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new UI.PaletteUpgradeTool());
Application.Run(new UI.PaletteUpgradeToolOld());
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,7 @@
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="Krypton" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Krypton.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Square_Design_128_x_128_New_Green" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Square Design 128 x 128 New Green.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Square_Design_64_x_64_New_Green" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Square Design 64 x 64 New Green.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
<value>C:\Users\Peter William Wagner\Desktop\Krypton.ico;System.Byte[]</value>
</data>
<data name="v2to6" xml:space="preserve">
<value>&lt;?xml version="1.0"?&gt;
Expand Down Expand Up @@ -163,6 +157,12 @@
&lt;/xsl:template&gt;
&lt;/xsl:stylesheet&gt;</value>
</data>
<data name="Krypton Icon 128 x 128" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>C:\Users\Peter William Wagner\Desktop\Krypton Icon 128 x 128.png;System.Byte[]</value>
</data>
<data name="Krypton Icon 64 x 64" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>C:\Users\Peter William Wagner\Desktop\Krypton Icon 64 x 64.png;System.Byte[]</value>
</data>
<data name="v6to19" xml:space="preserve">
<value>&lt;?xml version="1.0"?&gt;
&lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt;
Expand Down Expand Up @@ -216,4 +216,7 @@
&lt;/xsl:stylesheet&gt;</value>
<comment>Make sure to duplictae from / in the `KryptonCustomPaletteBase` code base</comment>
</data>
<data name="Krypton Icon 64 x 64" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Krypton Icon 64 x 64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 60b3d90

Please sign in to comment.