-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextTranscoder.csproj
More file actions
32 lines (27 loc) · 986 Bytes
/
Copy pathTextTranscoder.csproj
File metadata and controls
32 lines (27 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationManifest>App.manifest</ApplicationManifest>
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
<AssemblyTitle>文本转码器</AssemblyTitle>
<Version>0.9.1</Version>
<FileVersion>$(Version)</FileVersion>
<AssemblyVersion>$(Version)</AssemblyVersion>
<Copyright>© 2023 Mgh. All rights reserved.</Copyright>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\icon.ico" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="HandyControl" Version="3.5.1" />
<PackageReference Include="UTF.Unknown" Version="2.5.1" />
</ItemGroup>
</Project>