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
127 lines (127 loc) · 6.29 KB
/
ScriptCs.Core.csproj
File metadata and controls
127 lines (127 loc) · 6.29 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?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>{E590E710-E159-48E6-A3E6-1A83D3FE732C}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ScriptCs</RootNamespace>
<AssemblyName>ScriptCs.Core</AssemblyName>
<AppDesignerFolder>Properties</AppDesignerFolder>
<FileAlignment>512</FileAlignment>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
<LangVersion>5</LangVersion>
<TargetFrameworkProfile />
</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>
<CodeAnalysisRuleSet>..\..\ScriptCs.ruleset</CodeAnalysisRuleSet>
</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>
<CodeAnalysisRuleSet>..\..\ScriptCs.ruleset</CodeAnalysisRuleSet>
</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="AppDomainAssemblyResolver.cs" />
<Compile Include="AssemblyInfo.cs" />
<Compile Include="AssemblyResolver.cs" />
<Compile Include="AssemblyUtility.cs" />
<Compile Include="Extensions\EnumerableExtensions.cs" />
<Compile Include="Extensions\MethodInfoExtensions.cs" />
<Compile Include="FileSystemMigrator.cs" />
<Compile Include="FrameworkUtils.cs" />
<Compile Include="ILoggerConfigurator.cs" />
<Compile Include="NullScriptLibraryComposer.cs" />
<Compile Include="ReplCommands\ScriptPacksCommand.cs" />
<Compile Include="Extensions\TypeExtensions.cs" />
<Compile Include="ScriptInfo.cs" />
<Compile Include="ScriptLibraryComposer.cs" />
<Compile Include="ScriptLibraryWrapper.cs" />
<Compile Include="ReplCommands\AliasCommand.cs" />
<Compile Include="ReplCommands\CdCommand.cs" />
<Compile Include="ReplCommands\ClearCommand.cs" />
<Compile Include="ReplCommands\CwdCommand.cs" />
<Compile Include="DebugScriptExecutor.cs" />
<Compile Include="Exceptions\ScriptCompilationException.cs" />
<Compile Include="Exceptions\ScriptExecutionException.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="Guard.cs" />
<Compile Include="ReplCommands\HelpCommand.cs" />
<Compile Include="ReplCommands\ExitCommand.cs" />
<Compile Include="ReplCommands\InstallCommand.cs" />
<Compile Include="LoadLineProcessor.cs" />
<Compile Include="PackageAssemblyResolver.cs" />
<Compile Include="Constants.cs" />
<Compile Include="PackageReference.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ReferenceLineProcessor.cs" />
<Compile Include="Repl.cs" />
<Compile Include="ReplCommands\ReferencesCommand.cs" />
<Compile Include="ReplCommands\ResetCommand.cs" />
<Compile Include="ReplCommands\UsingsCommand.cs" />
<Compile Include="ReplCommands\VarsCommand.cs" />
<Compile Include="ScriptEnvironment.cs" />
<Compile Include="ScriptExecutorExtensions.cs" />
<Compile Include="ScriptHost.cs" />
<Compile Include="ScriptHostFactory.cs" />
<Compile Include="ScriptPackManager.cs" />
<Compile Include="ScriptPackResolver.cs" />
<Compile Include="ScriptExecutor.cs" />
<Compile Include="ScriptServices.cs" />
<Compile Include="SessionState.cs" />
<Compile Include="ShebangLineProcessor.cs" />
<Compile Include="StringExtensions.cs" />
<Compile Include="UsingLineProcessor.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="..\..\build\ScriptCs.Common.props" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\..\packages\StyleCop.MSBuild.4.7.49.0\build\StyleCop.MSBuild.Targets" Condition="Exists('..\..\packages\StyleCop.MSBuild.4.7.49.0\build\StyleCop.MSBuild.Targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\..\packages\StyleCop.MSBuild.4.7.49.0\build\StyleCop.MSBuild.Targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\StyleCop.MSBuild.4.7.49.0\build\StyleCop.MSBuild.Targets'))" />
</Target>
</Project>