forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.NetFramework.Source.csproj
More file actions
31 lines (31 loc) · 1.58 KB
/
Copy pathServiceStack.NetFramework.Source.csproj
File metadata and controls
31 lines (31 loc) · 1.58 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>ServiceStack.NetFramework</PackageId>
<AssemblyName>ServiceStack.NetFramework</AssemblyName>
<TargetFramework>net472</TargetFramework>
<RootNamespace>ServiceStack</RootNamespace>
<Title>.NET v4.5 only features for ServiceStack</Title>
<PackageDescription>
Contains ASP.NET and .NET Framework only features used in ServiceStack:
- MiniProfiler
- SmartThreadPool, AppSelfHostBase
</PackageDescription>
<PackageTags>ServiceStack;MiniProfiler;SmartThreadPool</PackageTags>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="MiniProfiler\UI\*.*" Exclude="bin\**;obj\**;**\*.xproj;packages\**;@(EmbeddedResource)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\ServiceStack.Text\src\ServiceStack.Text\ServiceStack.Text.csproj" />
<ProjectReference Include="..\..\..\ServiceStack.OrmLite\src\ServiceStack.OrmLite\ServiceStack.OrmLite.Source.csproj" />
<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" />
<PackageReference Include="System.Memory" Version="4.5.4" />
<Reference Include="System.Net" />
<Reference Include="System.Web" />
<Reference Include="System.ServiceModel" />
<Reference Include="System.Configuration" />
</ItemGroup>
</Project>