-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathWPFUI.csproj
More file actions
43 lines (36 loc) · 1.34 KB
/
Copy pathWPFUI.csproj
File metadata and controls
43 lines (36 loc) · 1.34 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<UseWPF>true</UseWPF>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion>
</PropertyGroup>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<AssemblyName>TravianBotSharp</AssemblyName>
<SignAssembly>False</SignAssembly>
<ApplicationIcon>favicon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Resource Include="Resources\**" />
</ItemGroup>
<ItemGroup>
<Content Include="favicon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CP.Extensions.Hosting.ReactiveUI.Wpf" Version="2.2.2" />
<PackageReference Include="MaterialDesignThemes" Version="5.3.0" />
<PackageReference Include="ReactiveUI.Drawing" Version="22.2.1" />
<PackageReference Include="ReactiveUI.WPF" Version="22.2.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MainCore\MainCore.csproj" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>WPFUI.Test</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>