forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Desktop.Source.csproj
More file actions
28 lines (23 loc) · 1.34 KB
/
ServiceStack.Desktop.Source.csproj
File metadata and controls
28 lines (23 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>ServiceStack.Desktop</AssemblyName>
<RootNamespace>ServiceStack.Desktop</RootNamespace>
<DefineConstants>$(DefineConstants);SOURCE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="lib\**\*.*" Exclude="bin\**;obj\**;**\*.xproj;packages\**;@(EmbeddedResource)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceStack.Interfaces\ServiceStack.Interfaces.csproj" />
<ProjectReference Include="..\ServiceStack.Client\ServiceStack.Client.Source.csproj" />
<ProjectReference Include="..\ServiceStack.Common\ServiceStack.Common.Source.csproj" />
<ProjectReference Include="..\ServiceStack\ServiceStack.Source.csproj" />
<ProjectReference Include="..\..\..\ServiceStack.Text\src\ServiceStack.Text\ServiceStack.Text.csproj" />
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
<PackageReference Include="PInvoke.User32" Version="0.6.49" />
<PackageReference Include="PInvoke.Kernel32" Version="0.6.49" />
<PackageReference Include="PInvoke.Gdi32" Version="0.6.49" />
<PackageReference Include="PInvoke.Shell32" Version="0.6.49" />
</ItemGroup>
</Project>