forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaScriptEngineSwitcher.Sample.Logic.Net40.csproj
More file actions
80 lines (80 loc) · 3.89 KB
/
JavaScriptEngineSwitcher.Sample.Logic.Net40.csproj
File metadata and controls
80 lines (80 loc) · 3.89 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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4E8DC7D0-8121-4FB3-9DF5-788B755852A2}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>JavaScriptEngineSwitcher.Sample.Logic</RootNamespace>
<AssemblyName>JavaScriptEngineSwitcher.Sample.Logic</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET40</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;NET40</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Core" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Mvc, Version=3.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\JavaScriptEngineSwitcher.Core.Net4\JavaScriptEngineSwitcher.Core.Net40.csproj">
<Project>{5c903eef-bad1-43b8-bfe2-e4ee4d204410}</Project>
<Name>JavaScriptEngineSwitcher.Core.Net40</Name>
</ProjectReference>
<ProjectReference Include="..\JavaScriptEngineSwitcher.Sample.Resources.Net4\JavaScriptEngineSwitcher.Sample.Resources.Net40.csproj">
<Project>{6860b000-aa2e-4607-bbe0-a406d901dfde}</Project>
<Name>JavaScriptEngineSwitcher.Sample.Resources.Net40</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\JavaScriptEngineSwitcher.Sample.Logic\Models\JsEvaluationErrorViewModel.cs">
<Link>Models\JsEvaluationErrorViewModel.cs</Link>
</Compile>
<Compile Include="..\JavaScriptEngineSwitcher.Sample.Logic\Models\JsEvaluationResultViewModel.cs">
<Link>Models\JsEvaluationResultViewModel.cs</Link>
</Compile>
<Compile Include="..\JavaScriptEngineSwitcher.Sample.Logic\Models\JsEvaluationViewModel.cs">
<Link>Models\JsEvaluationViewModel.cs</Link>
</Compile>
<Compile Include="..\JavaScriptEngineSwitcher.Sample.Logic\Properties\AssemblyInfo.cs">
<Link>AssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\JavaScriptEngineSwitcher.Sample.Logic\Services\FileContentService.cs">
<Link>Services\FileContentService.cs</Link>
</Compile>
<Compile Include="..\JavaScriptEngineSwitcher.Sample.Logic\Services\JsEvaluationService.cs">
<Link>Services\JsEvaluationService.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<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>