forked from BeyondDimension/SteamTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathST.Client.Desktop.csproj
More file actions
73 lines (65 loc) · 2.66 KB
/
ST.Client.Desktop.csproj
File metadata and controls
73 lines (65 loc) · 2.66 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
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>System.Application</RootNamespace>
<AssemblyName>System.Application.SteamTools.Client.Desktop</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Compile Remove="ServiceCollectionExtensions.AddGeneralLogging.cs" />
<Compile Remove="UI\ViewModels\Pages\DebugWebViewPageViewModel.cs" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Common.CoreLib\Properties\AssemblyInfo.cs">
<Link>Properties\AssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Common.CoreLib\Properties\AssemblyInfo.Version.cs">
<Link>Properties\AssemblyInfo.Version.cs</Link>
</Compile>
<Compile Include="..\ST\Properties\InternalsVisibleTo.cs">
<Link>Properties\InternalsVisibleTo.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DnsClient" />
<PackageReference Include="Gameloop.Vdf" />
<PackageReference Include="NLog" />
<PackageReference Include="NLog.Extensions.Logging" />
<PackageReference Include="NotifyIcon.Base" />
<PackageReference Include="SharpZipLib" />
<PackageReference Include="Squid-Box.SevenZipSharp" />
<!--<PackageReference Include="Titanium.Web.Proxy" />-->
<PackageReference Include="System.CommandLine" />
<!--<PackageReference Include="System.Drawing.Common" />-->
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
<PackageReference Include="Nito.Disposables" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Common.PinyinLib.TinyPinyin\Common.PinyinLib.TinyPinyin.csproj" />
<ProjectReference Include="..\ST.Client\ST.Client.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\SR.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>SR.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\SR.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>SR.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Folder Include="Extensions\" />
<Folder Include="Services\Implementation\" />
<Folder Include="Services\Mvvm\" />
<Folder Include="UI\Resx\" />
<Folder Include="UI\ViewModels\Pages\About\" />
<Folder Include="UI\ViewModels\Pages\GameRelated\" />
<Folder Include="UI\ViewModels\Pages\Settings\" />
<Folder Include="UI\ViewModels\Windows\ArchiSteamFarmPlus\" />
<Folder Include="UI\ViewModels\Windows\CommunityProxyPage\" />
<Folder Include="UI\ViewModels\Windows\LocalAuthPage\" />
</ItemGroup>
</Project>