forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Plugins.Embedded.csproj
More file actions
63 lines (63 loc) · 2.68 KB
/
Copy pathServiceStack.Plugins.Embedded.csproj
File metadata and controls
63 lines (63 loc) · 2.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
<?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>{FC8F4FB4-DE3F-4083-8E2F-A2832A5AF690}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ServiceStack.Plugins.Embedded</RootNamespace>
<AssemblyName>ServiceStack.Plugins.Embedded</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>
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="EmbeddedFeature.cs" />
<Compile Include="VirtualDirectory\MultiVirtualPathProvider.cs" />
<Compile Include="VirtualDirectory\ResourceVirtualDirectory.cs" />
<Compile Include="VirtualDirectory\ResourceVirtualFile.cs" />
<Compile Include="VirtualDirectory\ResourceVirtualPathProvider.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="VirtualDirectory\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceStack\ServiceStack.csproj">
<Project>{680A1709-25EB-4D52-A87F-EE03FFD94BAA}</Project>
<Name>ServiceStack</Name>
</ProjectReference>
<ProjectReference Include="..\ServiceStack.Common\ServiceStack.Common.csproj">
<Project>{982416DB-C143-4028-A0C3-CF41892D18D3}</Project>
<Name>ServiceStack.Common</Name>
</ProjectReference>
<ProjectReference Include="..\ServiceStack.Interfaces\ServiceStack.Interfaces.csproj">
<Project>{42E1C8C0-A163-44CC-92B1-8F416F2C0B01}</Project>
<Name>ServiceStack.Interfaces</Name>
</ProjectReference>
</ItemGroup>
</Project>