forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Mvc.Core.csproj
More file actions
41 lines (37 loc) · 2.16 KB
/
Copy pathServiceStack.Mvc.Core.csproj
File metadata and controls
41 lines (37 loc) · 2.16 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>ServiceStack.Mvc.Core</PackageId>
<AssemblyName>ServiceStack.Mvc</AssemblyName>
<RootNamespace>ServiceStack.Mvc</RootNamespace>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<Title>ServiceStack.Mvc .NET Standard 2.0</Title>
<PackageDescription>
MVC Adapter classes to provide tight integration and re-usable functionality between ServiceStack and MVC.
Including adapters for: MiniProfiler, FluentValidation, Funq IOC Controller Factory, Funq Validator Factory ControllerBase (configured with access to ServiceStack's ICacheClient, ISession, typed UserSession dependencies).
</PackageDescription>
<PackageTags>MVC;ServiceStack;MiniProfiler;FluentValidation;Controller</PackageTags>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<DefineConstants>$(DefineConstants);NETCORE;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<DefineConstants>$(DefineConstants);NETCORE;NET6_0;NET6_0_OR_GREATER</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceStack.Interfaces\ServiceStack.Interfaces.Core.csproj" />
<ProjectReference Include="..\ServiceStack.Client\ServiceStack.Client.Core.csproj" />
<ProjectReference Include="..\ServiceStack.Common\ServiceStack.Common.Core.csproj" />
<ProjectReference Include="..\ServiceStack\ServiceStack.Core.csproj" />
<PackageReference Include="ServiceStack.Text.Core" Version="$(Version)" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor" Version="2.2.0" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.1' ">
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core " Version="2.2.5" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
</ItemGroup>
</Project>