2024-02-10 20:59:17 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0-windows8.0</TargetFramework>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<AssemblyName>clipboardwatcher</AssemblyName>
|
|
|
|
|
<Authors>Ray Lam</Authors>
|
|
|
|
|
<Company>Hi, I'm Ray</Company>
|
|
|
|
|
<Product>Clipboard Watcher</Product>
|
|
|
|
|
<Copyright>Ray Lam</Copyright>
|
|
|
|
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
|
|
|
|
<NoWin32Manifest>true</NoWin32Manifest>
|
2024-03-03 18:39:57 +00:00
|
|
|
|
<Version>0.1.1.003</Version>
|
2024-02-10 20:59:17 +00:00
|
|
|
|
<Title>Clipboard Watcher</Title>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Resources\**" />
|
|
|
|
|
<Compile Remove="RyzStudio\**" />
|
|
|
|
|
<EmbeddedResource Remove="Resources\**" />
|
|
|
|
|
<EmbeddedResource Remove="RyzStudio\**" />
|
|
|
|
|
<None Remove="Resources\**" />
|
|
|
|
|
<None Remove="RyzStudio\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove=".gitignore" />
|
|
|
|
|
<None Remove="build.bat" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="AppResource.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>AppResource.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Update="UIResource.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>UIResource.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="AppResource.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>AppResource.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Update="UIResource.resx">
|
|
|
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>UIResource.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Resources\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="Ryz3ui">
|
|
|
|
|
<HintPath>References\Ryz3ui.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|