-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3a82c97
commit 9ea6f66
Showing
8 changed files
with
86 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,27 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0-windows</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<UseWPF>true</UseWPF> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0-windows</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<UseWPF>true</UseWPF> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)'=='Release'"> | ||
<DebugType>None</DebugType> | ||
<DebugSymbols>false</DebugSymbols> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Remove="Resources\logos\*.*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="Resources\logos\*.*" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Resources\icons\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="Resources\icons\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Resource Include="Resources\logos\*.*"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Resource> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Resource Include="Resources\logos\*.*"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Resource> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,44 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>net8.0-windows</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<UseWPF>true</UseWPF> | ||
<ApplicationIcon>Resources\logo\logo.ico</ApplicationIcon> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="Resources\logo\*.*" /> | ||
</ItemGroup> | ||
|
||
|
||
|
||
<ItemGroup> | ||
<PackageReference Include="MaterialDesignThemes" Version="4.9.0" /> | ||
<PackageReference Include="Prism.Wpf" Version="8.1.97" /> | ||
<PackageReference Include="SharpVectors.Wpf" Version="1.8.2" /> | ||
<PackageReference Include="ShowMeTheXAML.MSBuild" Version="2.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\XMagnetSearch.ISearch\XMagnetSearch.ISearch.csproj" /> | ||
<ProjectReference Include="..\XMagnetSearch.Resources\XMagnetSearch.Resources.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="Resources\logo\*.*"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
|
||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>net8.0-windows</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<UseWPF>true</UseWPF> | ||
<Version>0.0.1</Version> | ||
<ApplicationIcon>Resources\logo\logo.ico</ApplicationIcon> | ||
<Description>磁力聚合搜索</Description> | ||
<PackageProjectUrl>https://github.com/fallingrust/XMagnetSearch</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/fallingrust/XMagnetSearch</RepositoryUrl> | ||
<PackageIcon>logo.png</PackageIcon> | ||
<Authors>fallingrust</Authors> | ||
<Company>fallingrust</Company> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'=='Release'"> | ||
<DebugType>None</DebugType> | ||
<DebugSymbols>false</DebugSymbols> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="MaterialDesignThemes" Version="4.9.0" /> | ||
<PackageReference Include="Prism.Wpf" Version="8.1.97" /> | ||
<PackageReference Include="SharpVectors.Wpf" Version="1.8.2" /> | ||
<PackageReference Include="ShowMeTheXAML.MSBuild" Version="2.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\XMagnetSearch.ISearch\XMagnetSearch.ISearch.csproj" /> | ||
<ProjectReference Include="..\XMagnetSearch.Resources\XMagnetSearch.Resources.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="Resources\logo\*.*" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Resource Include="Resources\logo\*.*"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Resource> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters