forked from 6b45/eft-dma-radar-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheft-dma-radar.csproj
93 lines (88 loc) · 3.35 KB
/
eft-dma-radar.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RootNamespace>eft_dma_radar</RootNamespace>
<Nullable>warnings</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Platforms>x64</Platforms>
</PropertyGroup>
<ItemGroup>
<None Remove="FTD3XX.dll" />
<None Remove="leechcore.dll" />
<None Remove="Maps\Customs.json" />
<None Remove="Maps\Customs.png" />
<None Remove="Maps\Factory.json" />
<None Remove="Maps\Factory.png" />
<None Remove="Maps\Interchange.json" />
<None Remove="Maps\Interchange.png" />
<None Remove="Maps\Lighthouse.json" />
<None Remove="Maps\Lighthouse.png" />
<None Remove="Maps\Reserve.json" />
<None Remove="Maps\Reserve.png" />
<None Remove="Maps\Shoreline.json" />
<None Remove="Maps\Shoreline.png" />
<None Remove="Maps\Woods.json" />
<None Remove="Maps\Woods.png" />
<None Remove="vmm.dll" />
</ItemGroup>
<ItemGroup>
<Content Include="FTD3XX.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="leechcore.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Customs.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Customs.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Factory.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Factory.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Interchange.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Interchange.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Lighthouse.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Lighthouse.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Reserve.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Reserve.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Shoreline.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Shoreline.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Woods.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Maps\Woods.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="vmm.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.80.3" />
<PackageReference Include="SkiaSharp.Views.WindowsForms" Version="2.80.3" />
</ItemGroup>
</Project>