forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptCs.Core.csproj
More file actions
96 lines (96 loc) · 4.71 KB
/
ScriptCs.Core.csproj
File metadata and controls
96 lines (96 loc) · 4.71 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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\build\ScriptCs.Common.props" />
<PropertyGroup>
<ProjectGuid>{E590E710-E159-48E6-A3E6-1A83D3FE732C}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ScriptCs</RootNamespace>
<AssemblyName>ScriptCs.Core</AssemblyName>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
</PropertyGroup>
<ItemGroup>
<Reference Include="Autofac, Version=3.0.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\Autofac.3.0.2\lib\net40\Autofac.dll</HintPath>
</Reference>
<Reference Include="Autofac.Configuration, Version=3.0.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\Autofac.3.0.2\lib\net40\Autofac.Configuration.dll</HintPath>
</Reference>
<Reference Include="Autofac.Integration.Mef, Version=3.0.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\Autofac.Mef.3.0.1\lib\net40\Autofac.Integration.Mef.dll</HintPath>
</Reference>
<Reference Include="Common.Logging">
<HintPath>..\..\packages\Common.Logging.2.1.2\lib\net40\Common.Logging.dll</HintPath>
</Reference>
<Reference Include="NuGet.Core, Version=2.2.31210.9045, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\Nuget.Core.2.2.0\lib\net40-Client\NuGet.Core.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.Composition" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="DebugScriptExecutor.cs" />
<Compile Include="Exceptions\ScriptExecutionException.cs" />
<Compile Include="Exceptions\MissingAssemblyException.cs" />
<Compile Include="..\..\common\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\..\common\CommonVersionInfo.cs">
<Link>Properties\CommonVersionInfo.cs</Link>
</Compile>
<Compile Include="FilePreProcessor.cs" />
<Compile Include="FileSystem.cs" />
<Compile Include="IFilePreProcessor.cs" />
<Compile Include="IFileSystem.cs" />
<Compile Include="IPackageAssemblyResolver.cs" />
<Compile Include="IScriptEngine.cs" />
<Compile Include="IScriptHostFactory.cs" />
<Compile Include="IScriptPackManager.cs" />
<Compile Include="IScriptPackResolver.cs" />
<Compile Include="IScriptExecutor.cs" />
<Compile Include="PackageAssemblyResolver.cs" />
<Compile Include="Constants.cs" />
<Compile Include="Package\PackageInstaller.cs" />
<Compile Include="Package\InstallationProvider\IInstallationProvider.cs" />
<Compile Include="Package\InstallationProvider\NugetInstallationProvider.cs" />
<Compile Include="Package\IPackageContainer.cs" />
<Compile Include="Package\IPackageInstaller.cs" />
<Compile Include="Package\IPackageObject.cs" />
<Compile Include="Package\IPackageReference.cs" />
<Compile Include="Package\PackageContainer.cs" />
<Compile Include="Package\PackageObject.cs" />
<Compile Include="Package\PackageReference.cs" />
<Compile Include="PreProcessorUtil.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ScriptHost.cs" />
<Compile Include="ScriptHostFactory.cs" />
<Compile Include="ScriptPackManager.cs" />
<Compile Include="ScriptPackResolver.cs" />
<Compile Include="ScriptExecutor.cs" />
<Compile Include="ScriptPackSession.cs" />
<Compile Include="SessionState.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config">
<SubType>Designer</SubType>
</None>
<None Include="Properties\ScriptCs.Core.nuspec" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ScriptCs.Contracts\ScriptCs.Contracts.csproj">
<Project>{6049e205-8b5f-4080-b023-70600e51fd64}</Project>
<Name>ScriptCs.Contracts</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
</Project>