forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptCs.Contracts.csproj
More file actions
75 lines (75 loc) · 3.24 KB
/
ScriptCs.Contracts.csproj
File metadata and controls
75 lines (75 loc) · 3.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
<?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>{6049E205-8B5F-4080-B023-70600E51FD64}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ScriptCs.Contracts</RootNamespace>
<AssemblyName>ScriptCs.Contracts</AssemblyName>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
</PropertyGroup>
<ItemGroup>
<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="BehaviorAfterCode.cs" />
<Compile Include="..\ScriptCs.Core\Guard.cs">
<Link>Guard.cs</Link>
</Compile>
<Compile Include="DirectiveLineProcessor.cs" />
<Compile Include="Exceptions\InvalidDirectiveUseException.cs" />
<Compile Include="FileParserContext.cs" />
<Compile Include="FilePreProcessorResult.cs" />
<Compile Include="IAssemblyResolver.cs" />
<Compile Include="IAssemblyUtility.cs" />
<Compile Include="IConsole.cs" />
<Compile Include="IFileParser.cs" />
<Compile Include="IFilePreProcessor.cs" />
<Compile Include="IFileSystem.cs" />
<Compile Include="IInstallationProvider.cs" />
<Compile Include="ILineProcessor.cs" />
<Compile Include="IModule.cs" />
<Compile Include="IModuleConfiguration.cs" />
<Compile Include="IModuleMetadata.cs" />
<Compile Include="IObjectSerializer.cs" />
<Compile Include="IPackageAssemblyResolver.cs" />
<Compile Include="IPackageContainer.cs" />
<Compile Include="IPackageInstaller.cs" />
<Compile Include="IPackageObject.cs" />
<Compile Include="IPackageReference.cs" />
<Compile Include="IScriptEngine.cs" />
<Compile Include="IScriptExecutor.cs" />
<Compile Include="IScriptHost.cs" />
<Compile Include="IScriptHostFactory.cs" />
<Compile Include="IScriptPack.cs" />
<Compile Include="IScriptPackContext.cs" />
<Compile Include="IScriptPackManager.cs" />
<Compile Include="IScriptPackResolver.cs" />
<Compile Include="IScriptPackSession.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="IServiceOverrides.cs" />
<Compile Include="LogLevel.cs" />
<Compile Include="ModuleAttribute.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ScriptPack.cs" />
<Compile Include="ScriptPackSession.cs" />
<Compile Include="ScriptResult.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Properties\ScriptCs.Contracts.nuspec" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
</Project>