forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptCs.csproj
More file actions
111 lines (111 loc) · 5.24 KB
/
ScriptCs.csproj
File metadata and controls
111 lines (111 loc) · 5.24 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
109
110
111
<?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>{25080671-1A80-4041-B9C7-260578FF4849}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>ScriptCs</RootNamespace>
<AssemblyName>scriptcs</AssemblyName>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>..\..\common\Icon.ico</ApplicationIcon>
</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">
<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="Common.Logging.Log4Net">
<HintPath>..\..\packages\Common.Logging.Log4Net.2.0.1\lib\net20\Common.Logging.Log4Net.dll</HintPath>
</Reference>
<Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\log4net.1.2.10\lib\2.0\log4net.dll</HintPath>
</Reference>
<Reference Include="PowerArgs, Version=1.6.0.0, Culture=neutral, PublicKeyToken=54832990a0812961, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\PowerArgs.1.6.0.0\lib\net40\PowerArgs.dll</HintPath>
</Reference>
<Reference Include="ServiceStack.Text">
<HintPath>..\..\packages\ServiceStack.Text.3.9.44\lib\net35\ServiceStack.Text.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.Composition" />
<Reference Include="System.Core" />
<Reference Include="System.Reflection.Context" />
<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="..\..\common\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\..\common\CommonVersionInfo.cs">
<Link>Properties\CommonVersionInfo.cs</Link>
</Compile>
<Compile Include="Command\CleanCommand.cs" />
<Compile Include="Command\CommandFactory.cs" />
<Compile Include="Command\CommandResult.cs" />
<Compile Include="Command\CompositeCommand.cs" />
<Compile Include="Command\ExecuteReplCommand.cs" />
<Compile Include="Command\ShowUsageCommand.cs" />
<Compile Include="Command\ICommand.cs" />
<Compile Include="Command\InstallCommand.cs" />
<Compile Include="Command\SaveCommand.cs" />
<Compile Include="Command\VersionCommand.cs" />
<Compile Include="Command\RestoreCommand.cs" />
<Compile Include="Command\ExecuteScriptCommand.cs" />
<Compile Include="CompositionRoot.cs" />
<Compile Include="IConsole.cs" />
<Compile Include="LoggerConfigurator.cs" />
<Compile Include="LogLevel.cs" />
<Compile Include="Repl.cs" />
<Compile Include="ReplConsole.cs" />
<Compile Include="ScriptServiceRoot.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ScriptCsArgs.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="Properties\chocolateyUninstall.ps1" />
<None Include="Properties\chocolateyInstall.ps1" />
<None Include="Properties\scriptcs.nuspec" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ScriptCs.Contracts\ScriptCs.Contracts.csproj">
<Project>{6049e205-8b5f-4080-b023-70600e51fd64}</Project>
<Name>ScriptCs.Contracts</Name>
</ProjectReference>
<ProjectReference Include="..\ScriptCs.Core\ScriptCs.Core.csproj">
<Project>{e590e710-e159-48e6-a3e6-1a83d3fe732c}</Project>
<Name>ScriptCs.Core</Name>
</ProjectReference>
<ProjectReference Include="..\ScriptCs.Engine.Roslyn\ScriptCs.Engine.Roslyn.csproj">
<Project>{e79ec231-e27d-4057-91c9-2d001a3a8c3b}</Project>
<Name>ScriptCs.Engine.Roslyn</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="..\..\common\Icon.ico">
<Link>Properties\Icon.ico</Link>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
</Project>