forked from BeyondDimension/SteamTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathST.Client.Mobile.csproj
More file actions
42 lines (38 loc) · 1.46 KB
/
ST.Client.Mobile.csproj
File metadata and controls
42 lines (38 loc) · 1.46 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>System.Application</RootNamespace>
<AssemblyName>System.Application.SteamTools.Client.Mobile</AssemblyName>
<DefineConstants>__MOBILE__;$(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>
<EmbeddedResource Include="..\ST.Client.Desktop\UI\Resx\*.shared.cs">
<LinkBase>UI\Resx</LinkBase>
</EmbeddedResource>
<Compile Include="..\ST.Client.Desktop\Models\*.shared.cs">
<LinkBase>Models</LinkBase>
</Compile>
<Compile Include="..\ST.Client.Desktop\Services\Mvvm\*.shared.cs">
<LinkBase>Services\Mvvm</LinkBase>
</Compile>
<Compile Include="..\ST.Client.Desktop\UI\ViewModels\**\*.shared.cs">
<LinkBase>UI\ViewModels</LinkBase>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ST.Client\ST.Client.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ReactiveUI" />
<PackageReference Include="Fleck" />
</ItemGroup>
</Project>