2021-09-07 11:32:24 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2024-07-17 00:56:17 +00:00
|
|
|
|
<TargetFramework>net8.0-windows8.0</TargetFramework>
|
2021-09-07 11:32:24 +00:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<NoWin32Manifest>true</NoWin32Manifest>
|
|
|
|
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
|
|
|
|
<SignAssembly>false</SignAssembly>
|
2024-07-18 22:45:51 +00:00
|
|
|
|
<AssemblyName>bukkubuddy</AssemblyName>
|
2021-09-07 11:32:24 +00:00
|
|
|
|
<Authors>Ray Lam</Authors>
|
|
|
|
|
<Company>Hi, I'm Ray</Company>
|
2024-07-18 22:45:51 +00:00
|
|
|
|
<Product>BukkuBuddy</Product>
|
2021-09-07 11:32:24 +00:00
|
|
|
|
<Copyright>Ray Lam</Copyright>
|
2022-12-24 21:05:42 +00:00
|
|
|
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>1.0.0.0</FileVersion>
|
2024-07-19 20:22:24 +00:00
|
|
|
|
<Version>0.6.0.972</Version>
|
2024-07-18 22:45:51 +00:00
|
|
|
|
<PackageId>bukkubuddy</PackageId>
|
2022-12-24 21:05:42 +00:00
|
|
|
|
<RunAnalyzersDuringLiveAnalysis>True</RunAnalyzersDuringLiveAnalysis>
|
2024-07-17 00:56:17 +00:00
|
|
|
|
<SupportedOSPlatformVersion>8.0</SupportedOSPlatformVersion>
|
2024-07-18 22:45:51 +00:00
|
|
|
|
<Description>BukkuBuddy Bookmark Manager</Description>
|
2021-09-07 11:32:24 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
2021-12-30 02:34:19 +00:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2021-09-07 11:32:24 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
2021-12-30 02:34:19 +00:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2021-09-07 11:32:24 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="#\**" />
|
2024-07-17 00:56:17 +00:00
|
|
|
|
<Compile Remove="Classes\**" />
|
2021-09-07 16:21:28 +00:00
|
|
|
|
<Compile Remove="DTO\**" />
|
2024-07-17 00:56:17 +00:00
|
|
|
|
<Compile Remove="Net\**" />
|
2021-11-15 23:46:18 +00:00
|
|
|
|
<Compile Remove="References\**" />
|
|
|
|
|
<Compile Remove="Resources\UI\**" />
|
|
|
|
|
<Compile Remove="RyzStudio\**" />
|
2021-09-07 16:21:28 +00:00
|
|
|
|
<Compile Remove="Text\**" />
|
2021-09-07 11:32:24 +00:00
|
|
|
|
<EmbeddedResource Remove="#\**" />
|
2024-07-17 00:56:17 +00:00
|
|
|
|
<EmbeddedResource Remove="Classes\**" />
|
2021-09-07 16:21:28 +00:00
|
|
|
|
<EmbeddedResource Remove="DTO\**" />
|
2024-07-17 00:56:17 +00:00
|
|
|
|
<EmbeddedResource Remove="Net\**" />
|
2021-11-15 23:46:18 +00:00
|
|
|
|
<EmbeddedResource Remove="References\**" />
|
|
|
|
|
<EmbeddedResource Remove="Resources\UI\**" />
|
|
|
|
|
<EmbeddedResource Remove="RyzStudio\**" />
|
2021-09-07 16:21:28 +00:00
|
|
|
|
<EmbeddedResource Remove="Text\**" />
|
2021-09-07 11:32:24 +00:00
|
|
|
|
<None Remove="#\**" />
|
2024-07-17 00:56:17 +00:00
|
|
|
|
<None Remove="Classes\**" />
|
2021-09-07 16:21:28 +00:00
|
|
|
|
<None Remove="DTO\**" />
|
2024-07-17 00:56:17 +00:00
|
|
|
|
<None Remove="Net\**" />
|
2021-11-15 23:46:18 +00:00
|
|
|
|
<None Remove="References\**" />
|
|
|
|
|
<None Remove="Resources\UI\**" />
|
|
|
|
|
<None Remove="RyzStudio\**" />
|
2021-09-07 16:21:28 +00:00
|
|
|
|
<None Remove="Text\**" />
|
2021-09-07 11:32:24 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Models\TileGroupModel.cs" />
|
|
|
|
|
<Compile Remove="Models\TileModel.cs" />
|
|
|
|
|
<Compile Remove="NewForm.cs" />
|
|
|
|
|
<Compile Remove="OpenFileForm.cs" />
|
2024-07-17 00:56:17 +00:00
|
|
|
|
<Compile Remove="PasswordForm.cs" />
|
2021-09-07 11:32:24 +00:00
|
|
|
|
<Compile Remove="Windows\Forms\BookmarkTreeViewSNode.cs" />
|
|
|
|
|
<Compile Remove="Windows\Forms\EditGroupForm.cs" />
|
|
|
|
|
<Compile Remove="Windows\Forms\EditTileFolderForm.cs" />
|
|
|
|
|
<Compile Remove="Windows\Forms\EditTileForm.cs" />
|
|
|
|
|
<Compile Remove="Windows\Forms\TileContainer.cs" />
|
|
|
|
|
<Compile Remove="Windows\Forms\TilePanel.cs" />
|
|
|
|
|
<Compile Remove="Windows\Forms\TilePanel.Designer.cs" />
|
|
|
|
|
<Compile Remove="Windows\Forms\TilePanelLayout.cs" />
|
|
|
|
|
<Compile Remove="Windows\Forms\TilePanelLayout.Designer.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Remove="NewForm.resx" />
|
|
|
|
|
<EmbeddedResource Remove="OpenFileForm.resx" />
|
2024-07-17 00:56:17 +00:00
|
|
|
|
<EmbeddedResource Remove="PasswordForm.resx" />
|
2021-09-07 11:32:24 +00:00
|
|
|
|
<EmbeddedResource Remove="Windows\Forms\EditGroupForm.resx" />
|
|
|
|
|
<EmbeddedResource Remove="Windows\Forms\EditTileFolderForm.resx" />
|
|
|
|
|
<EmbeddedResource Remove="Windows\Forms\EditTileForm.resx" />
|
|
|
|
|
<EmbeddedResource Remove="Windows\Forms\TileContainer.resx" />
|
|
|
|
|
<EmbeddedResource Remove="Windows\Forms\TilePanel.resx" />
|
|
|
|
|
<EmbeddedResource Remove="Windows\Forms\TilePanelLayout.resx" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove=".gitignore" />
|
2021-12-30 02:34:19 +00:00
|
|
|
|
<None Remove="build.bat" />
|
|
|
|
|
<None Remove="build64.bat" />
|
2021-09-07 11:32:24 +00:00
|
|
|
|
<None Remove="installer-64.iss" />
|
|
|
|
|
<None Remove="installer-86.iss" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-07-19 20:22:24 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="favicon.ico" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-09-07 11:32:24 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="AppResource.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>AppResource.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
2021-12-30 02:34:19 +00:00
|
|
|
|
<Compile Update="UpdateIconsForm.cs" />
|
|
|
|
|
<Compile Update="FindForm.cs" />
|
2024-07-17 00:56:17 +00:00
|
|
|
|
<Compile Update="EditBookmarkForm.cs" />
|
2021-09-07 11:32:24 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="AppResource.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>AppResource.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-07-17 00:56:17 +00:00
|
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.61" />
|
2024-07-18 16:28:21 +00:00
|
|
|
|
<PackageReference Include="RyzStudio" Version="8.1.2.249" />
|
|
|
|
|
<PackageReference Include="RyzStudio.Windows.Forms" Version="8.1.3.229" />
|
2021-11-15 23:46:18 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-09-07 11:32:24 +00:00
|
|
|
|
</Project>
|