2021-10-24 15:49:48 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2024-06-23 16:51:44 +00:00
|
|
|
|
<TargetFramework>net8.0-windows8.0</TargetFramework>
|
2021-10-24 15:49:48 +00:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<AssemblyName>randomfilerunner</AssemblyName>
|
|
|
|
|
<Authors>Ray Lam</Authors>
|
|
|
|
|
<Company>Hi, I'm Ray</Company>
|
|
|
|
|
<Product>Random File Runner</Product>
|
|
|
|
|
<Copyright>Ray Lam</Copyright>
|
|
|
|
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
|
|
|
|
<NoWin32Manifest>true</NoWin32Manifest>
|
2024-07-20 23:33:50 +00:00
|
|
|
|
<Version>1.1.1.031</Version>
|
2021-10-24 15:49:48 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-12-18 01:13:35 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-10-24 15:49:48 +00:00
|
|
|
|
<ItemGroup>
|
2021-11-07 16:00:38 +00:00
|
|
|
|
<Compile Remove="RyzStudio\**" />
|
|
|
|
|
<EmbeddedResource Remove="RyzStudio\**" />
|
|
|
|
|
<None Remove="RyzStudio\**" />
|
2021-10-24 15:49:48 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-12-18 01:13:35 +00:00
|
|
|
|
<None Remove=".gitignore" />
|
|
|
|
|
<None Remove="build.bat" />
|
2024-06-23 16:51:44 +00:00
|
|
|
|
<None Remove="MainForm.resx~RF28b83d97.TMP" />
|
2021-10-24 15:49:48 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-07-20 23:33:50 +00:00
|
|
|
|
<Content Include="favicon.ico" />
|
2021-10-24 15:49:48 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-11-09 22:44:36 +00:00
|
|
|
|
<ItemGroup>
|
2024-07-20 23:33:50 +00:00
|
|
|
|
<PackageReference Include="RyzStudio" Version="8.1.2.249" />
|
|
|
|
|
<PackageReference Include="RyzStudio.Windows.Forms" Version="8.1.3.614" />
|
2021-10-24 15:49:48 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="AppResource.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>AppResource.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
2024-06-23 16:51:44 +00:00
|
|
|
|
<Compile Update="MemoBoxForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
2021-10-24 15:49:48 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="AppResource.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>AppResource.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|