Skip to content

Commit 195fe01

Browse files
authored
Merge pull request #2 from Twinfield/MultipleSchemes
Multiple schemes
2 parents 9219e96 + 660dc4d commit 195fe01

8 files changed

Lines changed: 633 additions & 740 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ obj
33
_ReSharper*
44
*.user
55
*.suo
6-
*.resharper*
6+
*.resharper*
7+
Output/
8+
[Pp]ackages/*
Lines changed: 96 additions & 119 deletions
Original file line numberDiff line numberDiff line change
@@ -1,119 +1,96 @@
1-
<VisualStudioProject>
2-
<CSHARP
3-
ProjectType = "Local"
4-
ProductVersion = "7.10.6030"
5-
SchemaVersion = "2.0"
6-
ProjectGuid = "{0BAA8852-1597-43BB-AF78-BABA707D4D86}"
7-
>
8-
<Build>
9-
<Settings
10-
ApplicationIcon = ""
11-
AssemblyKeyContainerName = ""
12-
AssemblyName = "DataFresh.Common"
13-
AssemblyOriginatorKeyFile = ""
14-
DefaultClientScript = "JScript"
15-
DefaultHTMLPageLayout = "Grid"
16-
DefaultTargetSchema = "IE50"
17-
DelaySign = "false"
18-
OutputType = "Library"
19-
PreBuildEvent = ""
20-
PostBuildEvent = ""
21-
RootNamespace = "DataFresh.Common"
22-
RunPostBuildEvent = "OnBuildSuccess"
23-
StartupObject = ""
24-
>
25-
<Config
26-
Name = "Debug"
27-
AllowUnsafeBlocks = "false"
28-
BaseAddress = "285212672"
29-
CheckForOverflowUnderflow = "false"
30-
ConfigurationOverrideFile = ""
31-
DefineConstants = "DEBUG;TRACE"
32-
DocumentationFile = ""
33-
DebugSymbols = "true"
34-
FileAlignment = "4096"
35-
IncrementalBuild = "false"
36-
NoStdLib = "false"
37-
NoWarn = ""
38-
Optimize = "false"
39-
OutputPath = "bin\Debug\"
40-
RegisterForComInterop = "false"
41-
RemoveIntegerChecks = "false"
42-
TreatWarningsAsErrors = "false"
43-
WarningLevel = "4"
44-
/>
45-
<Config
46-
Name = "Release"
47-
AllowUnsafeBlocks = "false"
48-
BaseAddress = "285212672"
49-
CheckForOverflowUnderflow = "false"
50-
ConfigurationOverrideFile = ""
51-
DefineConstants = "TRACE"
52-
DocumentationFile = ""
53-
DebugSymbols = "false"
54-
FileAlignment = "4096"
55-
IncrementalBuild = "false"
56-
NoStdLib = "false"
57-
NoWarn = ""
58-
Optimize = "true"
59-
OutputPath = "bin\Release\"
60-
RegisterForComInterop = "false"
61-
RemoveIntegerChecks = "false"
62-
TreatWarningsAsErrors = "false"
63-
WarningLevel = "4"
64-
/>
65-
</Settings>
66-
<References>
67-
<Reference
68-
Name = "System"
69-
AssemblyName = "System"
70-
HintPath = "..\..\..\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.dll"
71-
/>
72-
<Reference
73-
Name = "System.Data"
74-
AssemblyName = "System.Data"
75-
HintPath = "..\..\..\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Data.dll"
76-
/>
77-
<Reference
78-
Name = "System.XML"
79-
AssemblyName = "System.Xml"
80-
HintPath = "..\..\..\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.XML.dll"
81-
/>
82-
</References>
83-
</Build>
84-
<Files>
85-
<Include>
86-
<File
87-
RelPath = "AssemblyInfo.cs"
88-
SubType = "Code"
89-
BuildAction = "Compile"
90-
/>
91-
<File
92-
RelPath = "Assemblies\deltaRunner.dll"
93-
BuildAction = "Content"
94-
/>
95-
<File
96-
RelPath = "Assemblies\nunit.framework.dll"
97-
BuildAction = "Content"
98-
/>
99-
<File
100-
RelPath = "Build\buildPrefix.txt"
101-
BuildAction = "Content"
102-
/>
103-
<File
104-
RelPath = "Build\default.build"
105-
BuildAction = "None"
106-
/>
107-
<File
108-
RelPath = "Database\PlaceHolder.txt"
109-
BuildAction = "Content"
110-
/>
111-
<File
112-
RelPath = "Executables\PlaceHolder.txt"
113-
BuildAction = "Content"
114-
/>
115-
</Include>
116-
</Files>
117-
</CSHARP>
118-
</VisualStudioProject>
119-
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
3+
<PropertyGroup>
4+
<ProjectType>Local</ProjectType>
5+
<ProductVersion>7.10.6030</ProductVersion>
6+
<SchemaVersion>2.0</SchemaVersion>
7+
<ProjectGuid>{0BAA8852-1597-43BB-AF78-BABA707D4D86}</ProjectGuid>
8+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
9+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
10+
<ApplicationIcon />
11+
<AssemblyKeyContainerName />
12+
<AssemblyName>DataFresh.Common</AssemblyName>
13+
<AssemblyOriginatorKeyFile />
14+
<DefaultClientScript>JScript</DefaultClientScript>
15+
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>
16+
<DefaultTargetSchema>IE50</DefaultTargetSchema>
17+
<DelaySign>false</DelaySign>
18+
<OutputType>Library</OutputType>
19+
<RootNamespace>DataFresh.Common</RootNamespace>
20+
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
21+
<StartupObject />
22+
<FileUpgradeFlags>
23+
</FileUpgradeFlags>
24+
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
25+
<UpgradeBackupLocation>
26+
</UpgradeBackupLocation>
27+
<OldToolsVersion>0.0</OldToolsVersion>
28+
</PropertyGroup>
29+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
30+
<OutputPath>bin\Debug\</OutputPath>
31+
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
32+
<BaseAddress>285212672</BaseAddress>
33+
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
34+
<ConfigurationOverrideFile />
35+
<DefineConstants>DEBUG;TRACE</DefineConstants>
36+
<DocumentationFile />
37+
<DebugSymbols>true</DebugSymbols>
38+
<FileAlignment>4096</FileAlignment>
39+
<NoStdLib>false</NoStdLib>
40+
<NoWarn />
41+
<Optimize>false</Optimize>
42+
<RegisterForComInterop>false</RegisterForComInterop>
43+
<RemoveIntegerChecks>false</RemoveIntegerChecks>
44+
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
45+
<WarningLevel>4</WarningLevel>
46+
<DebugType>full</DebugType>
47+
<ErrorReport>prompt</ErrorReport>
48+
</PropertyGroup>
49+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
50+
<OutputPath>bin\Release\</OutputPath>
51+
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
52+
<BaseAddress>285212672</BaseAddress>
53+
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
54+
<ConfigurationOverrideFile />
55+
<DefineConstants>TRACE</DefineConstants>
56+
<DocumentationFile />
57+
<DebugSymbols>false</DebugSymbols>
58+
<FileAlignment>4096</FileAlignment>
59+
<NoStdLib>false</NoStdLib>
60+
<NoWarn />
61+
<Optimize>true</Optimize>
62+
<RegisterForComInterop>false</RegisterForComInterop>
63+
<RemoveIntegerChecks>false</RemoveIntegerChecks>
64+
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
65+
<WarningLevel>4</WarningLevel>
66+
<DebugType>none</DebugType>
67+
<ErrorReport>prompt</ErrorReport>
68+
</PropertyGroup>
69+
<ItemGroup>
70+
<Reference Include="System">
71+
<Name>System</Name>
72+
</Reference>
73+
<Reference Include="System.Data">
74+
<Name>System.Data</Name>
75+
</Reference>
76+
<Reference Include="System.Xml">
77+
<Name>System.XML</Name>
78+
</Reference>
79+
</ItemGroup>
80+
<ItemGroup>
81+
<Compile Include="AssemblyInfo.cs">
82+
<SubType>Code</SubType>
83+
</Compile>
84+
<Content Include="Assemblies\deltaRunner.dll" />
85+
<Content Include="Assemblies\nunit.framework.dll" />
86+
<Content Include="Build\buildPrefix.txt" />
87+
<Content Include="Database\PlaceHolder.txt" />
88+
<Content Include="Executables\PlaceHolder.txt" />
89+
<None Include="Build\default.build" />
90+
</ItemGroup>
91+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
92+
<PropertyGroup>
93+
<PreBuildEvent />
94+
<PostBuildEvent />
95+
</PropertyGroup>
96+
</Project>

0 commit comments

Comments
 (0)