forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Desktop.csproj
More file actions
30 lines (25 loc) · 1.46 KB
/
ServiceStack.Desktop.csproj
File metadata and controls
30 lines (25 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Title>ServiceStack.Desktop</Title>
<PackageDescription>
Desktop Assets, Vue and React Framework libraries, Bootstrap, Material Design SVGs, Font Awesome and Win32 APIs for ServiceStack CEF .NET Core Desktop Apps
</PackageDescription>
<PackageTags>ServiceStack;Desktop,Cef,Vue,React,Bootstrap,MaterialDesign,fontawesone</PackageTags>
</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.csproj"/>
<ProjectReference Include="..\ServiceStack.Common\ServiceStack.Common.csproj"/>
<ProjectReference Include="..\ServiceStack\ServiceStack.csproj"/>
<PackageReference Include="ServiceStack.Text" Version="$(Version)"/>
<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>