forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Auth.Tests.csproj
More file actions
110 lines (110 loc) · 4.68 KB
/
ServiceStack.Auth.Tests.csproj
File metadata and controls
110 lines (110 loc) · 4.68 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{B7F650D2-6D7E-48BE-ADCE-19076249B3B7}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ServiceStack.Auth.Tests</RootNamespace>
<AssemblyName>ServiceStack.Auth.Tests</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="ServiceStack.Text">
<HintPath>..\..\lib\ServiceStack.Text.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>..\..\lib\tests\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="Mono.Data.Sqlite">
<HintPath>..\..\lib\tests\Mono.Data.Sqlite.dll</HintPath>
</Reference>
<Reference Include="ServiceStack.OrmLite">
<HintPath>..\..\lib\ServiceStack.OrmLite.dll</HintPath>
</Reference>
<Reference Include="ServiceStack.OrmLite.Sqlite">
<HintPath>..\..\lib\ServiceStack.OrmLite.Sqlite.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="RazorAppHost.cs" />
<Compile Include="TestBase.cs" />
<Compile Include="SecureTests.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="..\..\src\ServiceStack.Common\ServiceStack.Common.csproj">
<Project>{982416DB-C143-4028-A0C3-CF41892D18D3}</Project>
<Name>ServiceStack.Common</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\ServiceStack.Interfaces\ServiceStack.Interfaces.csproj">
<Project>{42E1C8C0-A163-44CC-92B1-8F416F2C0B01}</Project>
<Name>ServiceStack.Interfaces</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\ServiceStack.Razor\ServiceStack.Razor.csproj">
<Project>{64128C85-B9AF-4B4C-BE83-04983EF7F8C9}</Project>
<Name>ServiceStack.Razor</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\ServiceStack.ServiceInterface\ServiceStack.ServiceInterface.csproj">
<Project>{5A315F92-80D2-4C60-A5A4-22E027AC7E7E}</Project>
<Name>ServiceStack.ServiceInterface</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\ServiceStack\ServiceStack.csproj">
<Project>{680A1709-25EB-4D52-A87F-EE03FFD94BAA}</Project>
<Name>ServiceStack</Name>
</ProjectReference>
<ProjectReference Include="..\ServiceStack.WebHost.Endpoints.Tests\ServiceStack.WebHost.Endpoints.Tests.csproj">
<Project>{55C5C6DA-1834-4BA8-8D2F-19C091B6FC81}</Project>
<Name>ServiceStack.WebHost.Endpoints.Tests</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Views\Shared\SimplyLayout.cshtml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="CatchAll.cshtml" />
<EmbeddedResource Include="Views\_Layout.cshtml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="CatchAllDynamic.cshtml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Views\ViewThatUsesLayout.cshtml" />
</ItemGroup>
<ItemGroup>
<None Include="App.config">
<SubType>Designer</SubType>
</None>
<EmbeddedResource Include="Views\ViewThatUsesLayoutAndModel.cshtml" />
<EmbeddedResource Include="Views\Shared\HtmlReport.cshtml" />
<EmbeddedResource Include="Views\Rockstars.cshtml" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\lib\tests\sqlite3.dll">
<Link>sqlite3.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>