forked from BeyondDimension/SteamTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathST.Client.csproj
More file actions
95 lines (85 loc) · 3.87 KB
/
ST.Client.csproj
File metadata and controls
95 lines (85 loc) · 3.87 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net6.0</TargetFrameworks>
<RootNamespace>System.Application</RootNamespace>
<DefineConstants>ORM_SQLITE_PCL;$(DefineConstants)</DefineConstants>
<AssemblyName>System.Application.SteamTools.Client</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" $(TargetFramework.Contains('-android')) ">
<DefineConstants>EXCLUDE_ASF;$(DefineConstants)</DefineConstants>
</PropertyGroup>
<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>
<Compile Include="..\Common.AreaLib\Application\Entities\Area.cs">
<Link>Entities\Area.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="NLog" />
<PackageReference Include="NLog.Extensions.Logging" />
<PackageReference Include="NotifyIcon.Base" />
<PackageReference Include="SharpZipLib" />
<!--<PackageReference Include="Titanium.Web.Proxy" />-->
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
<!--<PackageReference Include="Nito.Disposables" />-->
<PackageReference Include="SkiaSharp" />
<PackageReference Include="Net.Codecrete.QrCodeGenerator" />
<PackageReference Include="Portable.BouncyCastle" />
<PackageReference Include="Fleck" />
<!--<PackageReference Include="CommunityToolkit.Mvvm"/>-->
<PackageReference Include="ReactiveUI.Fody" />
<!--<PackageReference Include="ArchiSteamFarm.Library" />-->
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) ">
<PackageReference Include="JustArchiNET.Madness" />
</ItemGroup>
<ItemGroup Condition=" !$(TargetFramework.Contains('-android')) ">
<ProjectReference Include="..\..\references\ArchiSteamFarm\ArchiSteamFarm.Library\ArchiSteamFarm.Library.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Common.PinyinLib\Common.PinyinLib.csproj" />
<ProjectReference Include="..\Repositories.sqlite-net-pcl\Repositories.sqlite-net-pcl.csproj" />
<ProjectReference Include="..\ST.Client.ReverseProxy\ST.Client.ReverseProxy.csproj" />
<ProjectReference Include="..\ST.Services.CloudService\ST.Services.CloudService.csproj" />
<ProjectReference Include="..\Common.ClientLib\Common.ClientLib.csproj" />
<ProjectReference Include="..\ST\ST.csproj" />
<ProjectReference Include="..\Common.PinyinLib.TinyPinyin\Common.PinyinLib.TinyPinyin.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\SR.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>SR.resx</DependentUpon>
</Compile>
<Compile Update="UI\Resx\AppResources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>AppResources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\SR.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>SR.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="UI\Resx\AppResources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>AppResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="UI\Resx\SR.AppResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>AppResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />
</ItemGroup>
</Project>