Imported Upstream version 6.10.0.68

Former-commit-id: 24402d2c086f17971345314a220c60f81ace0954
This commit is contained in:
Xamarin Public Jenkins (auto-signing) 2020-02-07 08:43:10 +00:00
parent e0a10bca36
commit dfc580e777
94 changed files with 661 additions and 505 deletions

View File

@ -1 +1 @@
91371d37aacc62640cff3d8f4b0354a883369950
d779fb8e5499a2cf70f5d87f44454faf1fc18fb3

View File

@ -1 +1 @@
24a7d08b99428114ac70d788e6edbb688c8b9e4a
da6335f92f67b22c4819e3057f8c313ff3af60f0

File diff suppressed because it is too large Load Diff

View File

@ -10,11 +10,11 @@ generated by GNU Autoconf 2.69. Invocation command line was
## Platform. ##
## --------- ##
hostname = az-ubuntu-generalf85770
hostname = az-ubuntu-general5fdb53
uname -m = x86_64
uname -r = 4.15.0-1066-azure
uname -r = 4.15.0-1067-azure
uname -s = Linux
uname -v = #71-Ubuntu SMP Thu Dec 12 20:35:32 UTC 2019
uname -v = #72-Ubuntu SMP Wed Jan 15 15:07:27 UTC 2020
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
@ -747,7 +747,7 @@ generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_COMMANDS =
$ ./config.status
on az-ubuntu-generalf85770
on az-ubuntu-general5fdb53
config.status:1238: creating Makefile
config.status:1238: creating bdw-gc.pc

View File

@ -1 +1 @@
b9b587451a42deced6329eb1bca5c1706f1c58a5
1a5834edfaad22aa9d5e81e405521b9bfeb51a69

View File

@ -37,19 +37,19 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DefineConstants>DEBUG;TRACE;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSet Condition="'$(RunCodeAnalysis)' != 'false'">AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<DefineConstants>TRACE;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSet Condition="'$(RunCodeAnalysis)' != 'false'">AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />

View File

@ -76,9 +76,7 @@ namespace NUnitLite.Runner
this.xmlWriter = xmlWriter;
InitializeXmlFile(result);
result.ToXml(true).WriteTo(xmlWriter);
WriteResultElement(result);
TerminateXmlFile();
}
@ -142,6 +140,78 @@ namespace NUnitLite.Runner
xmlWriter.WriteEndElement();
}
private void WriteTestSuiteAttirbutes(ITestResult result)
{
var testSuite = result.Test as TestSuite;
xmlWriter.WriteAttributeString("type", testSuite.TestType);
xmlWriter.WriteAttributeString("id", testSuite.Id.ToString ());
xmlWriter.WriteAttributeString("name", testSuite.Name);
xmlWriter.WriteAttributeString("fullname", testSuite.FullName);
xmlWriter.WriteAttributeString("testcasecount", testSuite.TestCaseCount.ToString ());
xmlWriter.WriteAttributeString("result", result.ResultState.Status.ToString ());
xmlWriter.WriteAttributeString("time", result.Duration.ToString ());
xmlWriter.WriteAttributeString("total", (result.PassCount + result.FailCount + result.SkipCount + result.InconclusiveCount).ToString ());
xmlWriter.WriteAttributeString("passed", result.PassCount.ToString ());
xmlWriter.WriteAttributeString("failed", result.FailCount.ToString ());
xmlWriter.WriteAttributeString("inconclusive", result.InconclusiveCount.ToString ());
xmlWriter.WriteAttributeString("skipped", result.SkipCount.ToString ());
xmlWriter.WriteAttributeString("asserts", result.AssertCount.ToString ());
}
private void WriteProperties(ITestResult result)
{
var properties = result.Test.Properties;
int nprops = 0;
foreach (string key in properties.Keys) {
foreach (object prop in properties [key]) {
if (nprops++ == 0)
xmlWriter.WriteStartElement ("properties");
xmlWriter.WriteStartElement ("property");
xmlWriter.WriteAttributeString ("name", key);
xmlWriter.WriteAttributeString ("value", prop.ToString ());
xmlWriter.WriteEndElement ();
}
}
if (nprops > 0)
xmlWriter.WriteEndElement (); // properties
}
private void WriteResultElement(ITestResult result)
{
if (result.Test is TestSuite) { // all test-suites are similar
xmlWriter.WriteStartElement("test-suite");
WriteTestSuiteAttirbutes(result);
WriteProperties(result);
switch(result.ResultState.Status) {
case TestStatus.Skipped:
case TestStatus.Inconclusive:
WriteReasonElement(result.Message);
break;
case TestStatus.Failed:
WriteFailureElement(result.Message, result.StackTrace, result.ExceptionType ?? "UnknownException");
break;
}
if (result.FailCount > 0) {
xmlWriter.WriteStartElement("failure");
xmlWriter.WriteStartElement("message");
xmlWriter.WriteCData(result.Message);
xmlWriter.WriteEndElement();
xmlWriter.WriteEndElement();
}
WriteChildResults(result);
xmlWriter.WriteEndElement(); // test-suite
return;
} else {
WriteTestElement(result);
}
}
private void TerminateXmlFile()
{
xmlWriter.WriteEndElement(); // test-run
@ -149,5 +219,81 @@ namespace NUnitLite.Runner
xmlWriter.Flush();
xmlWriter.Close();
}
private void WriteTestElement(ITestResult result)
{
ITest test = result.Test;
xmlWriter.WriteStartElement("test-case");
xmlWriter.WriteAttributeString("id", test.Id.ToString ());
xmlWriter.WriteAttributeString("name", test.Name);
xmlWriter.WriteAttributeString("fullname", test.FullName);
xmlWriter.WriteAttributeString("result", result.ResultState.Status.ToString ());
xmlWriter.WriteAttributeString("label", result.ResultState.Status.ToString ());
xmlWriter.WriteAttributeString("time", result.Duration.ToString ());
xmlWriter.WriteAttributeString("asserts", result.AssertCount.ToString ());
switch (result.ResultState.Status) {
case TestStatus.Skipped:
case TestStatus.Inconclusive:
WriteReasonElement (result.Message);
break;
case TestStatus.Failed:
WriteFailureElement (result.Message, result.StackTrace, result.ExceptionType ?? "UnknownException");
break;
}
xmlWriter.WriteEndElement ();
}
private void WriteReasonElement(string message)
{
xmlWriter.WriteStartElement("reason");
xmlWriter.WriteStartElement("message");
xmlWriter.WriteCData(message);
xmlWriter.WriteEndElement();
xmlWriter.WriteEndElement();
}
private void WriteFailureElement(string message, string stackTrace, string exceptionType)
{
xmlWriter.WriteStartElement("failure");
xmlWriter.WriteStartElement("message");
WriteCData(message);
xmlWriter.WriteEndElement();
xmlWriter.WriteStartElement("stack-trace");
if (stackTrace != null)
WriteCData(stackTrace);
xmlWriter.WriteEndElement();
xmlWriter.WriteEndElement();
}
private void WriteChildResults(ITestResult result)
{
foreach (ITestResult childResult in result.Children)
WriteResultElement(childResult);
}
private void WriteCData(string text)
{
int start = 0;
while (true)
{
int illegal = text.IndexOf("]]>", start);
if (illegal < 0)
break;
xmlWriter.WriteCData(text.Substring(start, illegal - start + 2));
start = illegal + 2;
if (start >= text.Length)
return;
}
if (start > 0)
xmlWriter.WriteCData(text.Substring(start));
else
xmlWriter.WriteCData(text);
}
}
}

View File

@ -253,7 +253,7 @@ namespace NUnitLite.Runner
filter = new AndFilter(filter, excludeFilter);
}
#if MONO
#if (MONO && !MONO_NO_NUNIT24)
filter = Xamarin.BabysitterSupport.AddBabysitterFilter(filter);
#endif
RunTests(filter);
@ -372,7 +372,7 @@ namespace NUnitLite.Runner
new NUnit2XmlOutputWriter(startTime).WriteResultFile(result, resultFile);
else if (resultFormat == "nunit3")
new NUnit3XmlOutputWriter(startTime).WriteResultFile(result, resultFile);
#if MONO
#if (MONO && !MONO_NO_XUNIT)
else if (resultFormat == "xunit")
new XunitXmlOutputWriter(startTime).WriteResultFile(result, resultFile);
#endif
@ -422,7 +422,7 @@ namespace NUnitLite.Runner
/// <param name="test">The test</param>
public void TestStarted(ITest test)
{
#if MONO
#if (MONO && !MONO_NO_NUNIT24)
if (!test.IsSuite)
Xamarin.BabysitterSupport.RecordEnterTest(test.FullName);
@ -442,7 +442,7 @@ namespace NUnitLite.Runner
/// <param name="result">The result of the test</param>
public void TestFinished(ITestResult result)
{
#if MONO
#if (MONO && !MONO_NO_NUNIT24)
if (!result.Test.IsSuite) {
Xamarin.BabysitterSupport.RecordLeaveTest (result.Test.FullName);
if (result.ResultState.Status == TestStatus.Failed)

View File

@ -37,20 +37,20 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>TRACE;DEBUG;NET_2_0,CLR_2_0,NUNITLITE</DefineConstants>
<DefineConstants>TRACE;DEBUG;NET_2_0,CLR_2_0,NUNITLITE;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSet Condition="'$(RunCodeAnalysis)' != 'false'">AllRules.ruleset</CodeAnalysisRuleSet>
<DocumentationFile>..\..\bin\Debug\net-2.0\nunitlite.xml</DocumentationFile>
<OutputPath>..\..\bin\Debug\net-2.0\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE;NET_2_0,CLR_2_0,NUNITLITE</DefineConstants>
<DefineConstants>TRACE;NET_2_0,CLR_2_0,NUNITLITE;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSet Condition="'$(RunCodeAnalysis)' != 'false'">AllRules.ruleset</CodeAnalysisRuleSet>
<DocumentationFile>..\..\bin\Release\net-2.0\nunitlite.xml</DocumentationFile>
<OutputPath>..\..\bin\Release\net-2.0\</OutputPath>
</PropertyGroup>
@ -247,6 +247,7 @@
<Compile Include="Extensibility\ISuiteBuilder.cs" />
<Compile Include="Extensibility\ITestCaseBuilder.cs" />
<Compile Include="Extensibility\ITestCaseProvider.cs" />
<Compile Include="FinallyDelegate.cs" />
<Compile Include="GlobalSettings.cs" />
<Compile Include="Guard.cs" />
<Compile Include="Has.cs" />
@ -379,4 +380,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>

View File

@ -39,20 +39,20 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Debug\net-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_3_5, CLR_2_0,NUNITLITE</DefineConstants>
<DefineConstants>TRACE;DEBUG;NET_3_5, CLR_2_0,NUNITLITE;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSet Condition="'$(RunCodeAnalysis)' != 'false'">AllRules.ruleset</CodeAnalysisRuleSet>
<DocumentationFile>..\..\bin\Debug\net-3.5\nunitlite.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Release\net-3.5\</OutputPath>
<DefineConstants>TRACE;NET_3_5, CLR_2_0,NUNITLITE</DefineConstants>
<DefineConstants>TRACE;NET_3_5, CLR_2_0,NUNITLITE;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSet Condition="'$(RunCodeAnalysis)' != 'false'">AllRules.ruleset</CodeAnalysisRuleSet>
<DocumentationFile>..\..\bin\Release\net-3.5\nunitlite.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
@ -230,6 +230,7 @@
<Compile Include="Extensibility\ITestCaseBuilder.cs" />
<Compile Include="Extensibility\ITestCaseProvider.cs" />
<Compile Include="GlobalSettings.cs" />
<Compile Include="FinallyDelegate.cs" />
<Compile Include="Guard.cs" />
<Compile Include="Has.cs" />
<Compile Include="IExpectException.cs" />
@ -366,4 +367,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>

View File

@ -39,20 +39,20 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Debug\net-4.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_4_0, CLR_4_0,NUNITLITE</DefineConstants>
<DefineConstants>TRACE;DEBUG;NET_4_0, CLR_4_0,NUNITLITE;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSet Condition="'$(RunCodeAnalysis)' != 'false'">AllRules.ruleset</CodeAnalysisRuleSet>
<DocumentationFile>..\..\bin\Debug\net-4.0\nunitlite.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Release\net-4.0\</OutputPath>
<DefineConstants>TRACE;NET_4_0, CLR_4_0,NUNITLITE</DefineConstants>
<DefineConstants>TRACE;NET_4_0, CLR_4_0,NUNITLITE;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSet Condition="'$(RunCodeAnalysis)' != 'false'">AllRules.ruleset</CodeAnalysisRuleSet>
<DocumentationFile>..\..\bin\Release\net-4.0\nunitlite.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
@ -230,6 +230,7 @@
<Compile Include="Extensibility\ITestCaseBuilder.cs" />
<Compile Include="Extensibility\ITestCaseProvider.cs" />
<Compile Include="GlobalSettings.cs" />
<Compile Include="FinallyDelegate.cs" />
<Compile Include="Guard.cs" />
<Compile Include="Has.cs" />
<Compile Include="IExpectException.cs" />
@ -365,4 +366,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>

View File

@ -39,10 +39,10 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Debug\net-4.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_4_5, CLR_4_0,NUNITLITE</DefineConstants>
<DefineConstants>TRACE;DEBUG;NET_4_5, CLR_4_0,NUNITLITE;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSet Condition="'$(RunCodeAnalysis)' != 'false'">AllRules.ruleset</CodeAnalysisRuleSet>
<DocumentationFile>..\..\bin\Debug\net-4.5\nunitlite.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
@ -50,10 +50,10 @@
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Release\net-4.5\</OutputPath>
<DefineConstants>TRACE;NET_4_5, CLR_4_0,NUNITLITE</DefineConstants>
<DefineConstants>TRACE;NET_4_5, CLR_4_0,NUNITLITE;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSet Condition="'$(RunCodeAnalysis)' != 'false'">AllRules.ruleset</CodeAnalysisRuleSet>
<DocumentationFile>..\..\bin\Release\net-4.5\nunitlite.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
@ -231,6 +231,7 @@
<Compile Include="Extensibility\ISuiteBuilder.cs" />
<Compile Include="Extensibility\ITestCaseBuilder.cs" />
<Compile Include="Extensibility\ITestCaseProvider.cs" />
<Compile Include="FinallyDelegate.cs" />
<Compile Include="GlobalSettings.cs" />
<Compile Include="Guard.cs" />
<Compile Include="Has.cs" />
@ -369,4 +370,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>

View File

@ -25,7 +25,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Debug\netcf-2.0</OutputPath>
<DefineConstants>TRACE;DEBUG;WindowsCE;NETCF;NETCF_2_0;CLR_2_0;NUNITLITE</DefineConstants>
<DefineConstants>TRACE;DEBUG;WindowsCE;NETCF;NETCF_2_0;CLR_2_0;NUNITLITE;$(AppendConstants)</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
@ -38,7 +38,7 @@
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Release\netcf-2.0</OutputPath>
<DefineConstants>TRACE;WindowsCE;NETCF;NETCF_2_0;CLR_2_0;NUNITLITE</DefineConstants>
<DefineConstants>TRACE;WindowsCE;NETCF;NETCF_2_0;CLR_2_0;NUNITLITE;$(AppendConstants)</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>

View File

@ -25,7 +25,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Debug\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;WindowsCE;NETCF;NETCF_3_5;CLR_2_0;NUNITLITE</DefineConstants>
<DefineConstants>TRACE;DEBUG;WindowsCE;NETCF;NETCF_3_5;CLR_2_0;NUNITLITE;$(AppendConstants)</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
@ -38,7 +38,7 @@
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Release\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;WindowsCE;NETCF;NETCF_3_5;CLR_2_0;NUNITLITE</DefineConstants>
<DefineConstants>TRACE;WindowsCE;NETCF;NETCF_3_5;CLR_2_0;NUNITLITE;$(AppendConstants)</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>

View File

@ -32,7 +32,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Debug\sl-3.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;SILVERLIGHT;SL_3_0;CLR_2_0;NUNITLITE</DefineConstants>
<DefineConstants>TRACE;DEBUG;SILVERLIGHT;SL_3_0;CLR_2_0;NUNITLITE;$(AppendConstants)</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
@ -43,7 +43,7 @@
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Release\sl-3.0\</OutputPath>
<DefineConstants>TRACE;SILVERLIGHT;SL_3_0;CLR_2_0;NUNITLITE</DefineConstants>
<DefineConstants>TRACE;SILVERLIGHT;SL_3_0;CLR_2_0;NUNITLITE;$(AppendConstants)</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>

View File

@ -30,7 +30,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Debug\sl-4.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;SILVERLIGHT;SL_4_0;CLR_2_0;NUNITLITE</DefineConstants>
<DefineConstants>TRACE;DEBUG;SILVERLIGHT;SL_4_0;CLR_2_0;NUNITLITE;$(AppendConstants)</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
@ -41,7 +41,7 @@
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Release\sl-4.0\</OutputPath>
<DefineConstants>TRACE;SILVERLIGHT;SL_4_0;CLR_2_0;NUNITLITE</DefineConstants>
<DefineConstants>TRACE;SILVERLIGHT;SL_4_0;CLR_2_0;NUNITLITE;$(AppendConstants)</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>

View File

@ -31,7 +31,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Debug\sl-5.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;SILVERLIGHT;SL_5_0;CLR_4_0;NUNITLITE</DefineConstants>
<DefineConstants>TRACE;DEBUG;SILVERLIGHT;SL_5_0;CLR_4_0;NUNITLITE;$(AppendConstants)</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
@ -42,7 +42,7 @@
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Release\sl-5.0\</OutputPath>
<DefineConstants>TRACE;SILVERLIGHT;SL_5_0;CLR_2_0;NUNITLITE</DefineConstants>
<DefineConstants>TRACE;SILVERLIGHT;SL_5_0;CLR_2_0;NUNITLITE;$(AppendConstants)</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>

View File

@ -20,14 +20,14 @@
<DebugType>full</DebugType>
<OutputPath>..\..\bin\Debug\net-2.0\</OutputPath>
<Optimize>false</Optimize>
<DefineConstants>TRACE;DEBUG;CLR_2_0</DefineConstants>
<DefineConstants>TRACE;DEBUG;CLR_2_0;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE;CLR_2_0</DefineConstants>
<DefineConstants>TRACE;CLR_2_0;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<OutputPath>..\..\bin\Release\net-2.0\</OutputPath>

View File

@ -20,7 +20,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Debug\net-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;CLR_2_0</DefineConstants>
<DefineConstants>TRACE;DEBUG;CLR_2_0;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
@ -28,7 +28,7 @@
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Release\net-3.5\</OutputPath>
<DefineConstants>TRACE;CLR_2_0</DefineConstants>
<DefineConstants>TRACE;CLR_2_0;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

View File

@ -20,7 +20,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Debug\net-4.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;CLR_4_0</DefineConstants>
<DefineConstants>TRACE;DEBUG;CLR_4_0;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
@ -28,7 +28,7 @@
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Release\net-4.0\</OutputPath>
<DefineConstants>TRACE;CLR_4_0</DefineConstants>
<DefineConstants>TRACE;CLR_4_0;$(AppendConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

Some files were not shown because too many files have changed in this diff Show More