-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFF14_TC_Launcher.csproj
More file actions
39 lines (32 loc) · 1020 Bytes
/
FF14_TC_Launcher.csproj
File metadata and controls
39 lines (32 loc) · 1020 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
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Nullable>enable</Nullable>
<ApplicationIcon>favicon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Userjoy.Ffxiv.Launcher\**" />
<EmbeddedResource Remove="Userjoy.Ffxiv.Launcher\**" />
<None Remove="Userjoy.Ffxiv.Launcher\**" />
<Page Remove="Userjoy.Ffxiv.Launcher\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2739.15" />
</ItemGroup>
<ItemGroup>
<None Update="html\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<EmbeddedResource Include="html\**" />
</ItemGroup>
<ItemGroup>
<Content Include="favicon.ico" />
</ItemGroup>
</Project>