forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptCs.Tests.csproj
More file actions
108 lines (108 loc) · 4.79 KB
/
ScriptCs.Tests.csproj
File metadata and controls
108 lines (108 loc) · 4.79 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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.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>{4D6A2A55-BB17-40CB-9567-EAFF80BEFDCE}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ScriptCs.Tests</RootNamespace>
<AssemblyName>ScriptCs.Tests</AssemblyName>
<AppDesignerFolder>Properties</AppDesignerFolder>
<FileAlignment>512</FileAlignment>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
<CodeAnalysisRuleSet>..\..\ScriptCs.Test.ruleset</CodeAnalysisRuleSet>
<NoWarn>1701</NoWarn>
<LangVersion>5</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>
<Compile Include="..\..\common\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\..\common\CommonVersionInfo.cs">
<Link>Properties\CommonVersionInfo.cs</Link>
</Compile>
<Compile Include="..\*.cs">
<Link>%(Filename)%(Extension)</Link>
</Compile>
<Compile Include="ConfigTests.cs" />
<Compile Include="ExecuteLooseScriptCommandTests.cs" />
<Compile Include="ScriptCsArgsTests.cs" />
<Compile Include="CleanCommandTests.cs" />
<Compile Include="CommandFactoryTests.cs" />
<Compile Include="ExecuteReplCommandTests.cs" />
<Compile Include="InstallCommandTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ExecuteScriptCommandTests.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<Reference Include="Moq">
<HintPath>..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll</HintPath>
</Reference>
<Reference Include="Ploeh.AutoFixture">
<HintPath>..\..\packages\AutoFixture.3.18.8\lib\net40\Ploeh.AutoFixture.dll</HintPath>
</Reference>
<Reference Include="Ploeh.AutoFixture.AutoMoq">
<HintPath>..\..\packages\AutoFixture.AutoMoq.3.18.8\lib\net40\Ploeh.AutoFixture.AutoMoq.dll</HintPath>
</Reference>
<Reference Include="Ploeh.AutoFixture.Xunit">
<HintPath>..\..\packages\AutoFixture.Xunit.3.18.8\lib\net40\Ploeh.AutoFixture.Xunit.dll</HintPath>
</Reference>
<Reference Include="Should">
<HintPath>..\..\packages\Should.1.1.20\lib\Should.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="xunit">
<HintPath>..\..\packages\xunit.1.9.2\lib\net20\xunit.dll</HintPath>
</Reference>
<Reference Include="xunit.extensions">
<HintPath>..\..\packages\xunit.extensions.1.9.2\lib\net20\xunit.extensions.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\ScriptCs.Contracts\ScriptCs.Contracts.csproj">
<Project>{6049e205-8b5f-4080-b023-70600e51fd64}</Project>
<Name>ScriptCs.Contracts</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\ScriptCs.Core\ScriptCs.Core.csproj">
<Project>{e590e710-e159-48e6-a3e6-1a83d3fe732c}</Project>
<Name>ScriptCs.Core</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\ScriptCs.Hosting\ScriptCs.Hosting.csproj">
<Project>{9aef2d95-87fb-4829-b384-34bfe076d531}</Project>
<Name>ScriptCs.Hosting</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\ScriptCs\ScriptCs.csproj">
<Project>{25080671-1a80-4041-b9c7-260578ff4849}</Project>
<Name>ScriptCs</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<Import Project="..\..\build\ScriptCs.Common.props" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>