-
Notifications
You must be signed in to change notification settings - Fork 20
/
TriadBuddy.csproj
45 lines (39 loc) · 1.66 KB
/
TriadBuddy.csproj
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
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="Dalamud.Plugin.Bootstrap.targets"/>
<PropertyGroup>
<Authors>MgAl2O4</Authors>
<Version>1.10.0.1</Version>
<Description>Triple triad solver</Description>
<Copyright>(c) 2024 MgAl2O4</Copyright>
<PackageProjectUrl>https://github.com//MgAl2O4/FFTriadBuddyDalamud</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<None Remove="assets\loc\de.json" />
<None Remove="assets\loc\en.json" />
<None Remove="assets\loc\es.json" />
<None Remove="assets\loc\fr.json" />
<None Remove="assets\loc\ja.json" />
<None Remove="assets\loc\ko.json" />
<None Remove="assets\loc\zh.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="assets\loc\de.json" />
<EmbeddedResource Include="assets\loc\en.json" />
<EmbeddedResource Include="assets\loc\es.json" />
<EmbeddedResource Include="assets\loc\fr.json" />
<EmbeddedResource Include="assets\loc\ja.json" />
<EmbeddedResource Include="assets\loc\ko.json" />
<EmbeddedResource Include="assets\loc\zh.json" />
</ItemGroup>
<ItemGroup>
<None Update="TriadBuddy.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="CopyAssets" BeforeTargets="Build">
<Copy SourceFiles="$(ProjectDir)\assets\icon.png" DestinationFolder="$(OutDir)\images" />
<Copy SourceFiles="$(ProjectDir)\assets\image1.png" DestinationFolder="$(OutDir)\images" />
<Copy SourceFiles="$(ProjectDir)\assets\image2.png" DestinationFolder="$(OutDir)\images" />
<Copy SourceFiles="$(ProjectDir)\assets\image3.png" DestinationFolder="$(OutDir)\images" />
</Target>
</Project>