2021-07-22 23:45:30 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<NoWin32Manifest>true</NoWin32Manifest>
|
|
|
|
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
|
|
|
|
<SignAssembly>false</SignAssembly>
|
|
|
|
|
<AssemblyName>fizzylauncher</AssemblyName>
|
|
|
|
|
<Authors>Ray Lam</Authors>
|
|
|
|
|
<Company>Hi, I'm Ray</Company>
|
|
|
|
|
<Product>Fizzy Launcher</Product>
|
|
|
|
|
<Copyright>Ray Lam</Copyright>
|
2022-02-21 17:19:36 +00:00
|
|
|
|
<AssemblyVersion>0.2.4.117</AssemblyVersion>
|
|
|
|
|
<FileVersion>0.2.4.117</FileVersion>
|
|
|
|
|
<Version>0.2.4.117</Version>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-07-23 01:19:03 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-07-22 23:45:30 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="#\**" />
|
2021-11-09 23:27:16 +00:00
|
|
|
|
<Compile Remove="Resources\UI\**" />
|
|
|
|
|
<Compile Remove="RyzStudio\**" />
|
|
|
|
|
<Compile Remove="Text\**" />
|
2021-07-22 23:45:30 +00:00
|
|
|
|
<EmbeddedResource Remove="#\**" />
|
2021-11-09 23:27:16 +00:00
|
|
|
|
<EmbeddedResource Remove="Resources\UI\**" />
|
|
|
|
|
<EmbeddedResource Remove="RyzStudio\**" />
|
|
|
|
|
<EmbeddedResource Remove="Text\**" />
|
2021-07-22 23:45:30 +00:00
|
|
|
|
<None Remove="#\**" />
|
2021-11-09 23:27:16 +00:00
|
|
|
|
<None Remove="Resources\UI\**" />
|
|
|
|
|
<None Remove="RyzStudio\**" />
|
|
|
|
|
<None Remove="Text\**" />
|
2021-07-22 23:45:30 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-09 23:27:16 +00:00
|
|
|
|
<Compile Remove="UIResource.Designer.cs" />
|
2021-07-22 23:45:30 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-09 23:27:16 +00:00
|
|
|
|
<EmbeddedResource Remove="UIResource.resx" />
|
2021-07-22 23:45:30 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-07-31 17:40:04 +00:00
|
|
|
|
<ItemGroup>
|
2021-11-09 23:27:16 +00:00
|
|
|
|
<None Remove=".gitignore" />
|
|
|
|
|
<None Remove="build.bat" />
|
2021-07-31 17:40:04 +00:00
|
|
|
|
<None Remove="installer-64.iss" />
|
|
|
|
|
<None Remove="installer-86.iss" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-11-09 23:27:16 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="RyzStudio3">
|
|
|
|
|
<HintPath>References\RyzStudio3.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-07-22 23:45:30 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="AppResource.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>AppResource.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
2021-11-09 23:27:16 +00:00
|
|
|
|
<Compile Update="NewForm.cs" />
|
2021-07-22 23:45:30 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="AppResource.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>AppResource.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|