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
29 lines (24 loc) · 1.41 KB
/
Copy pathServiceStack.Desktop.Source.csproj
File metadata and controls
29 lines (24 loc) · 1.41 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<AssemblyName>ServiceStack.Desktop</AssemblyName>
<RootNamespace>ServiceStack.Desktop</RootNamespace>
<DefineConstants>$(DefineConstants);SOURCE</DefineConstants>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</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="6.0.0" />
<PackageReference Include="PInvoke.User32" Version="0.7.104" />
<PackageReference Include="PInvoke.Kernel32" Version="0.7.104" />
<PackageReference Include="PInvoke.Gdi32" Version="0.7.104" />
<PackageReference Include="PInvoke.Shell32" Version="0.7.104" />
</ItemGroup>
</Project>