-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathTechStacks.Tests.csproj
More file actions
105 lines (105 loc) · 5.21 KB
/
Copy pathTechStacks.Tests.csproj
File metadata and controls
105 lines (105 loc) · 5.21 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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{90B6A6F3-49B8-4804-B27B-BCA97B7990CA}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TechStacks.Tests</RootNamespace>
<AssemblyName>TechStacks.Tests</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
<IsCodedUITest>False</IsCodedUITest>
<TestProjectType>UnitTest</TestProjectType>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<LangVersion>default</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Configuration" />
<Reference Include="System.Data" />
<Reference Include="System.DirectoryServices" />
<Reference Include="System.Net" />
<Reference Include="System.Numerics" />
<Reference Include="System.ServiceModel" />
<Reference Include="System.Transactions" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AdminTasks.cs" />
<Compile Include="IntegrationTests.cs" />
<Compile Include="Seeds.cs" />
<Compile Include="TestHosts.cs" />
<Compile Include="UnitTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="servicestack-forum.json" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TechStacks.ServiceInterface\TechStacks.ServiceInterface.csproj">
<Project>{8321ec19-4800-4e5f-8e56-a11d531022a8}</Project>
<Name>TechStacks.ServiceInterface</Name>
</ProjectReference>
<ProjectReference Include="..\TechStacks.ServiceModel\TechStacks.ServiceModel.csproj">
<Project>{35d650bd-8598-4abb-806e-79d6e57d228b}</Project>
<Name>TechStacks.ServiceModel</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Npgsql" Version="4.0.9" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="ServiceStack" Version="5.9.2" />
<PackageReference Include="ServiceStack.Client" Version="5.6.0" />
<PackageReference Include="ServiceStack.Common" Version="5.6.0" />
<PackageReference Include="ServiceStack.Interfaces" Version="5.6.0" />
<PackageReference Include="ServiceStack.OrmLite" Version="5.6.0" />
<PackageReference Include="ServiceStack.OrmLite.PostgreSQL" Version="5.6.0" />
<PackageReference Include="ServiceStack.OrmLite.Sqlite" Version="5.6.0" />
<PackageReference Include="ServiceStack.Redis" Version="5.6.0" />
<PackageReference Include="ServiceStack.Server" Version="5.6.0" />
<PackageReference Include="ServiceStack.Text" Version="5.6.0" />
<PackageReference Include="System.Buffers" Version="4.5.0" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.111" />
<PackageReference Include="System.Memory" Version="4.5.3" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.5.2" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.3" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>