git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3798 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
@ -0,0 +1,259 @@
@@ -0,0 +1,259 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
|
||||
<UsingTask |
||||
TaskName="Microsoft.Build.Tasks.CreateBooManifestResourceName" |
||||
AssemblyFile="Boo.Microsoft.Build.Tasks.dll" /> |
||||
|
||||
<UsingTask |
||||
TaskName="Boo.Microsoft.Build.Tasks.Booc" |
||||
AssemblyFile="Boo.Microsoft.Build.Tasks.dll"/> |
||||
|
||||
<UsingTask |
||||
TaskName="Boo.Microsoft.Build.Tasks.ExecBoo" |
||||
AssemblyFile="Boo.Microsoft.Build.Tasks.dll"/> |
||||
|
||||
<PropertyGroup> |
||||
<MSBuildAllProjects Condition="'$(BooBinPath)' != ''"> |
||||
$(MSBuildAllProjects);$(BooBinPath)\Boo.Microsoft.Build.targets |
||||
</MSBuildAllProjects> |
||||
<MSBuildAllProjects Condition="'$(BooBinPath)' == ''"> |
||||
$(MSBuildAllProjects);$(MSBuildBinPath)\Boo.Microsoft.Build.targets |
||||
</MSBuildAllProjects> |
||||
<DefaultLanguageSourceExtension>.boo</DefaultLanguageSourceExtension> |
||||
<Language>Boo</Language> |
||||
</PropertyGroup> |
||||
|
||||
<!-- |
||||
The CreateManifestResourceNames target create the manifest resource names |
||||
from the .RESX files. |
||||
|
||||
[IN] |
||||
@(ResxWithNoCulture) - The names the non-culture .RESX files. |
||||
@(ResxWithCulture) - The names the culture .RESX files. |
||||
@(NonResxWithNoCulture) - The names of the non-culture non-RESX |
||||
files (like bitmaps, etc). |
||||
|
||||
@(NonResxWithCulture) - The names of the culture non-RESX |
||||
files (like bitmaps, etc). |
||||
|
||||
[OUT] |
||||
@(ManifestResourceWithNoCultureName) - The corresponding manifest |
||||
resource name (.RESOURCE) |
||||
|
||||
@(ManifestResourceWithCultureName) - The corresponding manifest |
||||
resource name (.RESOURCE) |
||||
|
||||
@(ManifestNonResxWithNoCulture) - The corresponding manifest |
||||
resource name. |
||||
|
||||
@(ManifestNonResxWithCulture) - The corresponding manifest |
||||
resource name. |
||||
|
||||
For Boo applications the transformation is like: |
||||
|
||||
Resources1.resx => RootNamespace.Resources1 => Build into main assembly |
||||
|
||||
SubFolder\Resources1.resx => |
||||
RootNamespace.SubFolder.Resources1 => |
||||
Build into main assembly |
||||
|
||||
Resources1.fr.resx => |
||||
RootNamespace.Resources1.fr => |
||||
Build into satellite assembly |
||||
|
||||
Resources1.notaculture.resx => |
||||
RootNamespace.Resources1.notaculture => |
||||
Build into main assembly |
||||
|
||||
For other project systems, this transformation may be different. |
||||
--> |
||||
|
||||
<PropertyGroup> |
||||
<CreateManifestResourceNamesDependsOn> |
||||
</CreateManifestResourceNamesDependsOn> |
||||
</PropertyGroup> |
||||
|
||||
<Target |
||||
Name="CreateManifestResourceNames" |
||||
DependsOnTargets="$(CreateManifestResourceNamesDependsOn)" |
||||
> |
||||
<CallTarget Targets="CreateManifestResourceNames_35" Condition="'$(MSBuildToolsVersion)' == '3.5'"/> |
||||
<CallTarget Targets="CreateManifestResourceNames_20" Condition="'$(MSBuildToolsVersion)' != '3.5'"/> |
||||
</Target> |
||||
|
||||
<Target |
||||
Name="CreateManifestResourceNames_20" |
||||
Condition="' |
||||
@(ResxWithNoCulture) |
||||
@(ResxWithCulture) |
||||
@(NonResxWithNoCulture) |
||||
@(NonResxWithCulture)'!=''" |
||||
> |
||||
<!-- Create the target resource names for non-culture resx files --> |
||||
<CreateBooManifestResourceName |
||||
Condition="'@(ResxWithNoCulture)'!=''" |
||||
ResourceFiles="@(ResxWithNoCulture)" |
||||
RootNamespace="$(RootNamespace)"> |
||||
|
||||
<Output |
||||
TaskParameter="ManifestResourceNames" |
||||
ItemName="ManifestResourceWithNoCultureName"/> |
||||
|
||||
</CreateBooManifestResourceName> |
||||
|
||||
<!-- Create the target resource names for culture resx files. --> |
||||
<CreateBooManifestResourceName |
||||
Condition="'@(ResxWithCulture)'!=''" |
||||
ResourceFiles="@(ResxWithCulture)" |
||||
RootNamespace="$(RootNamespace)"> |
||||
|
||||
<Output |
||||
TaskParameter="ManifestResourceNames" |
||||
ItemName="ManifestResourceWithCultureName"/> |
||||
|
||||
</CreateBooManifestResourceName> |
||||
|
||||
<!-- Create the target resource names for non-culture non-resx files. --> |
||||
<CreateBooManifestResourceName |
||||
Condition="'@(NonResxWithNoCulture)'!=''" |
||||
ResourceFiles="@(NonResxWithNoCulture)" |
||||
RootNamespace="$(RootNamespace)"> |
||||
|
||||
<Output |
||||
TaskParameter="ManifestResourceNames" |
||||
ItemName="ManifestNonResxWithNoCulture"/> |
||||
|
||||
</CreateBooManifestResourceName> |
||||
|
||||
<!-- Create the target resource names for culture non-resx files. --> |
||||
<CreateBooManifestResourceName |
||||
Condition="'@(NonResxWithCulture)'!=''" |
||||
ResourceFiles="@(NonResxWithCulture)" |
||||
RootNamespace="$(RootNamespace)"> |
||||
|
||||
<Output |
||||
TaskParameter="ManifestResourceNames" |
||||
ItemName="ManifestNonResxWithCulture"/> |
||||
|
||||
</CreateBooManifestResourceName> |
||||
</Target> |
||||
|
||||
<Target |
||||
Name="CreateManifestResourceNames_35" |
||||
Condition="'@(EmbeddedResource)' != ''" |
||||
> |
||||
<ItemGroup> |
||||
<_Temporary Remove="@(_Temporary)" /> |
||||
</ItemGroup> |
||||
|
||||
<CreateBooManifestResourceName |
||||
ResourceFiles="@(EmbeddedResource)" |
||||
RootNamespace="$(RootNamespace)" |
||||
Condition="'%(EmbeddedResource.ManifestResourceName)' == ''"> |
||||
|
||||
<Output TaskParameter="ResourceFilesWithManifestResourceNames" ItemName="_Temporary" /> |
||||
|
||||
</CreateBooManifestResourceName> |
||||
|
||||
<ItemGroup> |
||||
<EmbeddedResource Remove="@(EmbeddedResource)" Condition="'%(EmbeddedResource.ManifestResourceName)' == ''"/> |
||||
<EmbeddedResource Include="@(_Temporary)" /> |
||||
<_Temporary Remove="@(_Temporary)" /> |
||||
</ItemGroup> |
||||
</Target> |
||||
|
||||
|
||||
<PropertyGroup> |
||||
|
||||
<!-- |
||||
"None" is not technically a valid DebugType, so we can't pass it |
||||
in as such to the compiler. So here, we modify the properties so |
||||
they make sense. |
||||
--> |
||||
<DebugSymbols Condition="'$(DebugType)' == 'none'">false</DebugSymbols> |
||||
<DebugType Condition="'$(DebugType)' == 'none'"></DebugType> |
||||
|
||||
<!-- Provide a facility to override UseHostCompilerIfAvailable--> |
||||
<UseHostCompilerIfAvailable |
||||
Condition="'$(UseHostCompilerIfAvailable)' == ''"> |
||||
true |
||||
</UseHostCompilerIfAvailable> |
||||
|
||||
</PropertyGroup> |
||||
|
||||
<ItemGroup> |
||||
<DocFileItem |
||||
Include="$(DocumentationFile)" |
||||
Condition="'$(DocumentationFile)'!=''"> |
||||
|
||||
<InProject>false</InProject> |
||||
</DocFileItem> |
||||
</ItemGroup> |
||||
|
||||
<PropertyGroup> |
||||
<CoreCompileDependsOn> |
||||
_ComputeNonExistentFileProperty |
||||
</CoreCompileDependsOn> |
||||
</PropertyGroup> |
||||
|
||||
<PropertyGroup Condition=" '$(BoocToolPath)' != '' "> |
||||
<ReferencePath>$(ReferencePath);$(BoocToolPath)</ReferencePath> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition=" '$(BoocToolPath)' == '' "> |
||||
<ReferencePath>$(ReferencePath);$(BooBinPath)</ReferencePath> |
||||
</PropertyGroup> |
||||
|
||||
<Target |
||||
Name="CoreCompile" |
||||
Inputs="$(MSBuildAllProjects); |
||||
@(Compile); |
||||
@(ManifestResourceWithNoCulture); |
||||
$(ApplicationIcon); |
||||
$(AssemblyOriginatorKeyFile); |
||||
@(ManifestNonResxWithNoCultureOnDisk); |
||||
@(ReferencePath); |
||||
@(CompiledLicenseFile)" |
||||
Outputs="@(IntermediateAssembly)" |
||||
DependsOnTargets="$(CoreCompileDependsOn)" |
||||
> |
||||
|
||||
<Booc |
||||
OutputAssembly="@(IntermediateAssembly)" |
||||
References="@(ReferencePath)" |
||||
Resources= "@(ManifestResourceWithNoCulture); |
||||
@(ManifestNonResxWithNoCultureOnDisk); |
||||
@(CompiledLicenseFile)" |
||||
ResponseFiles="$(CompilerResponseFile)" |
||||
Sources="@(Compile)" |
||||
TargetType="$(OutputType)" |
||||
ToolPath="$(BoocToolPath)" |
||||
Pipeline="$(Pipeline)" |
||||
WhiteSpaceAgnostic="$(WhiteSpaceAgnostic)" |
||||
Ducky="$(Ducky)" |
||||
Verbosity="$(BoocVerbosity)" |
||||
Culture="$(AssemblyCulture)" |
||||
SourceDirectory="$(SourceDirectory)" |
||||
KeyFile="$(AssemblyOriginatorKeyFile)" |
||||
KeyContainer="$(AssemblyKeyContainerName)" |
||||
EmitDebugInformation="$(DebugSymbols)" |
||||
DelaySign="$(DelaySign)" |
||||
NoStandardLib="$(NoStdLib)" |
||||
DefineSymbols="$(DefineConstants)" |
||||
GenerateFullPaths="$(GenerateFullPaths)" |
||||
/> |
||||
|
||||
<Copy |
||||
Condition=" '$(BoocToolPath)' == '' " |
||||
SkipUnchangedFiles="true" |
||||
SourceFiles="$(BooBinPath)\Boo.Lang.dll" |
||||
DestinationFolder="$(OutputPath)"/> |
||||
|
||||
<Copy |
||||
Condition=" '$(BoocToolPath)' != '' " |
||||
SkipUnchangedFiles="true" |
||||
SourceFiles="$(BoocToolPath)\Boo.Lang.dll" |
||||
DestinationFolder="$(OutputPath)"/> |
||||
</Target> |
||||
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.Common.targets" /> |
||||
</Project> |
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
<configuration> |
||||
<startup> |
||||
<supportedRuntime version="v2.0.50727"/> |
||||
<supportedRuntime version="v1.1.4322"/> |
||||
</startup> |
||||
</configuration> |
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
# This file contains command-line options that the Boo |
||||
# command-line compiler (booc) will process as part |
||||
# of every compilation, unless the "-noconfig" option |
||||
# is specified. |
||||
|
||||
# Reference the common Framework libraries |
||||
#-r:System (already included by boo) |
||||
#-r:System.Data |
||||
-r:System.Drawing |
||||
#-r:System.Management |
||||
#-r:System.Messaging |
||||
#-r:System.Runtime.Remoting |
||||
#-r:System.Runtime.Serialization.Formatters.Soap |
||||
# does not work nicely on mono |
||||
-r:System.Security |
||||
#-r:System.ServiceProcess |
||||
#-r:System.Web |
||||
#-r:System.Web.Services |
||||
#-r:System.Windows.Forms |
||||
-r:System.Xml |
@ -0,0 +1,177 @@
@@ -0,0 +1,177 @@
|
||||
{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff31507\deff0\stshfdbch31505\stshfloch31506\stshfhich31506\stshfbi31507\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f34\fbidi \froman\fcharset1\fprq2{\*\panose 02040503050406030204}Cambria Math;} |
||||
{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} |
||||
{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} |
||||
{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} |
||||
{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f39\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} |
||||
{\f40\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\f42\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f43\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f44\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} |
||||
{\f45\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f46\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f47\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} |
||||
{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} |
||||
{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} |
||||
{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} |
||||
{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} |
||||
{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} |
||||
{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;}{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;} |
||||
{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;}{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;} |
||||
{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} |
||||
{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} |
||||
{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} |
||||
{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} |
||||
{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} |
||||
{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} |
||||
{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} |
||||
{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} |
||||
{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} |
||||
{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} |
||||
{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} |
||||
{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}} |
||||
{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0; |
||||
\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\*\defchp \fs22\loch\af31506\hich\af31506\dbch\af31505 }{\*\defpap \ql \li0\ri0\sa200\sl276\slmult1 |
||||
\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 |
||||
\ltrch\fcs0 \fs22\lang1033\langfe1033\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 Normal;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\* |
||||
\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa200\sl276\slmult1 |
||||
\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 |
||||
\snext11 \ssemihidden \sunhideused \sqformat Normal Table;}}{\*\rsidtbl \rsid11612883}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\author dinov}{\operator dinov} |
||||
{\creatim\yr2007\mo10\dy30\hr14\min43}{\revtim\yr2007\mo10\dy30\hr14\min43}{\version2}{\edmins1}{\nofpages2}{\nofwords404}{\nofchars2212}{\*\company Microsoft}{\nofcharsws2611}{\vern32893}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/200 |
||||
3/wordml}}\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect |
||||
\widowctrl\ftnbj\aenddoc\trackmoves1\trackformatting1\donotembedsysfont0\relyonvml0\donotembedlingdata1\grfdocevents0\validatexml0\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors0\horzdoc\dghspace120\dgvspace120\dghorigin1701 |
||||
\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale100\rsidroot11612883 \fet0{\*\wgrffmtfilter 2450}\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2 |
||||
\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6 |
||||
\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang |
||||
{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\sb100\sa100\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 |
||||
\fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \ab\af0\afs28 \ltrch\fcs0 \b\f0\fs28\insrsid11612883 \hich\af0\dbch\af31505\loch\f0 Microsoft }{\rtlch\fcs1 \ab\af0\afs28 \ltrch\fcs0 |
||||
\b\f0\fs28\insrsid11612883 \hich\af0\dbch\af31505\loch\f0 Public }{\rtlch\fcs1 \ab\af0\afs28 \ltrch\fcs0 \b\f0\fs28\insrsid11612883 \hich\af0\dbch\af31505\loch\f0 License (Ms-PL) |
||||
\par }{\rtlch\fcs1 \ab\af0\afs24 \ltrch\fcs0 \b\f0\fs24\insrsid11612883 \hich\af0\dbch\af31505\loch\f0 |
||||
This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11612883 |
||||
\par }{\rtlch\fcs1 \ab\af0\afs36 \ltrch\fcs0 \b\f0\fs36\insrsid11612883 \hich\af0\dbch\af31505\loch\f0 1. Definitions |
||||
\par }{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11612883 \hich\af0\dbch\af31505\loch\f0 \hich\f0 The terms \'93\loch\f0 \hich\f0 reproduce,\'94\loch\f0 \hich\f0 \'93\loch\f0 \hich\f0 reproduction,\'94\loch\f0 \hich\f0 \'93 |
||||
\hich\af0\dbch\af31505\loch\f0 \hich\f0 derivative works,\'94\loch\f0 \hich\f0 and \'93\loch\f0 \hich\f0 distribution\'94\loch\f0 have the same meaning here as under U.S. copyright law. |
||||
\par \hich\af0\dbch\af31505\loch\f0 \hich\f0 A \'93\loch\f0 \hich\f0 contribution\'94\loch\f0 is the original software, or any additions or changes to the software. |
||||
\par \hich\af0\dbch\af31505\loch\f0 \hich\f0 A \'93\loch\f0 \hich\f0 contributor\'94\loch\f0 is any person that distributes its contribution under this\hich\af0\dbch\af31505\loch\f0 license. |
||||
\par \loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 \hich\f0 Licensed patents\'94\loch\f0 are a contributor\hich\f0 \rquote \loch\f0 s patent claims that read directly on its contribution. |
||||
\par }{\rtlch\fcs1 \ab\af0\afs36 \ltrch\fcs0 \b\f0\fs36\insrsid11612883 \hich\af0\dbch\af31505\loch\f0 2. Grant of Rights |
||||
\par }{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11612883 \hich\af0\dbch\af31505\loch\f0 (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contrib |
||||
\hich\af0\dbch\af31505\loch\f0 utor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. |
||||
|
||||
\par \hich\af0\dbch\af31505\loch\f0 (B) Patent Grant- Subject to th\hich\af0\dbch\af31505\loch\f0 |
||||
e terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or o |
||||
\hich\af0\dbch\af31505\loch\f0 t\hich\af0\dbch\af31505\loch\f0 herwise dispose of its contribution in the software or derivative works of the contribution in the software. |
||||
\par }{\rtlch\fcs1 \ab\af0\afs36 \ltrch\fcs0 \b\f0\fs36\insrsid11612883 \hich\af0\dbch\af31505\loch\f0 3. Conditions and Limitations |
||||
\par }{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11612883 \hich\af0\dbch\af31505\loch\f0 (A) No Trademark License- This license does not grant you rights to use any contributors\hich\f0 \rquote \loch\f0 name, logo, or trademarks. |
||||
\par \hich\af0\dbch\af31505\loch\f0 (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. |
||||
\par \hich\af0\dbch\af31505\loch\f0 (C) If you distribute any portion of the software, you must ret\hich\af0\dbch\af31505\loch\f0 ain all copyright, patent, trademark, and attribution notices that are present in the software. |
||||
\par \hich\af0\dbch\af31505\loch\f0 (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with y\hich\af0\dbch\af31505\loch\f0 |
||||
our distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. |
||||
\par \hich\af0\dbch\af31505\loch\f0 \hich\f0 (E) The software is licensed \'93\loch\f0 \hich\f0 as-is.\'94\loch\f0 You bear the risk of using it. The contributors give \hich\af0\dbch\af31505\loch\f0 |
||||
no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantabil |
||||
\hich\af0\dbch\af31505\loch\f0 i\hich\af0\dbch\af31505\loch\f0 ty, fitness for a particular purpose and non-infringement. |
||||
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11612883 |
||||
\par }{\*\themedata 504b030414000600080000002100828abc13fa0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb6ac3301045f785fe83d0b6d8 |
||||
72ba28a5d8cea249777d2cd20f18e4b12d6a8f843409c9df77ecb850ba082d74231062ce997b55ae8fe3a00e1893f354e9555e6885647de3a8abf4fbee29bbd7 |
||||
2a3150038327acf409935ed7d757e5ee14302999a654e99e393c18936c8f23a4dc072479697d1c81e51a3b13c07e4087e6b628ee8cf5c4489cf1c4d075f92a0b |
||||
44d7a07a83c82f308ac7b0a0f0fbf90c2480980b58abc733615aa2d210c2e02cb04430076a7ee833dfb6ce62e3ed7e14693e8317d8cd0433bf5c60f53fea2fe7 |
||||
065bd80facb647e9e25c7fc421fd2ddb526b2e9373fed4bb902e182e97b7b461e6bfad3f010000ffff0300504b030414000600080000002100a5d6a7e7c00000 |
||||
00360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4fc7060abb08 |
||||
84a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b63095120f88d94fbc |
||||
52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462a1a82fe353 |
||||
bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f7468656d652f7468 |
||||
656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b4b0d592c9c |
||||
070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b4757e8d3f7 |
||||
29e245eb2b260a0238fd010000ffff0300504b03041400060008000000210096b5ade296060000501b0000160000007468656d652f7468656d652f7468656d65 |
||||
312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87615b8116d8 |
||||
a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad79482a9c04 |
||||
98f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b5d8a314d3c |
||||
94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab999fb7b471 |
||||
7509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9699640f671 |
||||
9e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd5868b37a088d1 |
||||
e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d60cf03ac1a5 |
||||
193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f9e7ef3f2d1 |
||||
17d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be15c308d3f2 |
||||
8acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a99793849c26ae6 |
||||
6252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d32a423279a |
||||
668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2af074481847 |
||||
bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86e877f0034e |
||||
16bafb0e258ebb4faf06b769e888340b103d3311da9750aa9d0a1cd3e4efca31a3508f6d0c5c5c398602f8e2ebc71591f5b616e24dd893aa3261fb44f95d843b |
||||
5974bb5c04f4edafb95b7892ec1108f3f98de75dc97d5772bdff7cc95d94cf672db4b3da0a6557f70db629362d72bcb0431e53c6066acac80d699a6409fb44d0 |
||||
8741bdce9c0e4971624a2378cceaba830b05366b90e0ea23aaa241845368b0eb9e2612ca8c742851ca251ceccc70256d8d87265dd96361531f186c3d9058edf2 |
||||
c00eafe8e1fc5c509031bb4d680e9f39a3154de0accc56ae644441edd76156d7429d995bdd88664a9dc3ad50197c38af1a0c16d684060441db02565e85f3b966 |
||||
0d0713cc48a0ed6ef7dedc2dc60b17e92219e180643ed27acffba86e9c94c78ab90980d8a9f0913ee49d62b512b79626fb06dccee2a432bbc60276b9f7dec44b |
||||
7904cfbca4f3f6443ab2a49c9c2c41476dafd55c6e7ac8c769db1bc399161ee314bc2e75cf8759081743be1236ec4f4d6693e5336fb672c5dc24a8c33585b5fb |
||||
9cc24e1d4885545b58463634cc5416022cd19cacfccb4d30eb45296023fd35a458598360f8d7a4003bbaae25e331f155d9d9a5116d3bfb9a95523e51440ca2e0 |
||||
088dd844ec6370bf0e55d027a012ae264c45d02f708fa6ad6da6dce29c255df9f6cae0ec38666984b372ab5334cf640b37795cc860de4ae2816e95b21be5ceaf |
||||
8a49f90b52a51cc6ff3355f47e0237052b81f6800fd7b802239daf6d8f0b1571a8426944fdbe80c6c1d40e8816b88b8569082ab84c36ff0539d4ff6dce591a26 |
||||
ade1c0a7f669880485fd484582903d284b26fa4e2156cff62e4b9265844c4495c495a9157b440e091bea1ab8aaf7760f4510eaa69a6465c0e04ec69ffb9e65d0 |
||||
28d44d4e39df9c1a52ecbd3607fee9cec7263328e5d661d3d0e4f62f44acd855ed7ab33cdf7bcb8ae889599bd5c8b3029895b6825696f6af29c239b75a5bb1e6 |
||||
345e6ee6c28117e73586c1a2214ae1be07e93fb0ff51e133fb65426fa843be0fb515c187064d0cc206a2fa926d3c902e907670048d931db4c1a44959d366ad93 |
||||
b65abe595f70a75bf03d616c2dd959fc7d4e6317cd99cbcec9c58b34766661c7d6766ca1a9c1b327531486c6f941c638c67cd22a7f75e2a37be0e82db8df9f30 |
||||
254d30c1372581a1f51c983c80e4b71ccdd28dbf000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f74 |
||||
68656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f24 |
||||
51eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198 |
||||
720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528 |
||||
a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100828abc13fa0000001c0200001300000000000000000000000000 |
||||
000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b000000000000000000000000 |
||||
002b0100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c00000000000000000000000000140200007468 |
||||
656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d001400060008000000210096b5ade296060000501b000016000000000000000000 |
||||
00000000d10200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b010000270000000000 |
||||
00000000000000009b0900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000960a00000000} |
||||
{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d |
||||
617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 |
||||
6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 |
||||
656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} |
||||
{\*\latentstyles\lsdstimax267\lsdlockeddef0\lsdsemihiddendef1\lsdunhideuseddef1\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; |
||||
\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9; |
||||
\lsdpriority39 \lsdlocked0 toc 1;\lsdpriority39 \lsdlocked0 toc 2;\lsdpriority39 \lsdlocked0 toc 3;\lsdpriority39 \lsdlocked0 toc 4;\lsdpriority39 \lsdlocked0 toc 5;\lsdpriority39 \lsdlocked0 toc 6;\lsdpriority39 \lsdlocked0 toc 7; |
||||
\lsdpriority39 \lsdlocked0 toc 8;\lsdpriority39 \lsdlocked0 toc 9;\lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdpriority1 \lsdlocked0 Default Paragraph Font; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority59 \lsdlocked0 Table Grid;\lsdunhideused0 \lsdlocked0 Placeholder Text;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 1; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdunhideused0 \lsdlocked0 Revision; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 2; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 2; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 3; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 3; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 3; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 4; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 4; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 5; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 5; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 6; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 6; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 6; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference; |
||||
\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdpriority37 \lsdlocked0 Bibliography;\lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;}}{\*\datastore 010500000200000018000000 |
||||
4d73786d6c322e534158584d4c5265616465722e352e3000000000000000000000060000 |
||||
d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff |
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff |
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff |
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff |
||||
fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff |
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff |
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff |
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff |
||||
ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffffec69d9888b8b3d4c859eaf6cd158be0f0000000000000000000000009055 |
||||
58f93d1bc801feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 |
||||
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 |
||||
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 |
||||
0000000000000000000000000000000000000000000000000105000000000000}} |
@ -0,0 +1,24 @@
@@ -0,0 +1,24 @@
|
||||
See http://www.mono-project.com/Cecil |
||||
|
||||
* License |
||||
|
||||
Copyright (C) 2005 Jb Evain |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining |
||||
a copy of this software and associated documentation files (the |
||||
"Software"), to deal in the Software without restriction, including |
||||
without limitation the rights to use, copy, modify, merge, publish, |
||||
distribute, sublicense, and/or sell copies of the Software, and to |
||||
permit persons to whom the Software is furnished to do so, subject to |
||||
the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be |
||||
included in all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@ -0,0 +1,201 @@
@@ -0,0 +1,201 @@
|
||||
Apache License |
||||
Version 2.0, January 2004 |
||||
http://www.apache.org/licenses/ |
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION |
||||
|
||||
1. Definitions. |
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction, |
||||
and distribution as defined by Sections 1 through 9 of this document. |
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by |
||||
the copyright owner that is granting the License. |
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all |
||||
other entities that control, are controlled by, or are under common |
||||
control with that entity. For the purposes of this definition, |
||||
"control" means (i) the power, direct or indirect, to cause the |
||||
direction or management of such entity, whether by contract or |
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the |
||||
outstanding shares, or (iii) beneficial ownership of such entity. |
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity |
||||
exercising permissions granted by this License. |
||||
|
||||
"Source" form shall mean the preferred form for making modifications, |
||||
including but not limited to software source code, documentation |
||||
source, and configuration files. |
||||
|
||||
"Object" form shall mean any form resulting from mechanical |
||||
transformation or translation of a Source form, including but |
||||
not limited to compiled object code, generated documentation, |
||||
and conversions to other media types. |
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or |
||||
Object form, made available under the License, as indicated by a |
||||
copyright notice that is included in or attached to the work |
||||
(an example is provided in the Appendix below). |
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object |
||||
form, that is based on (or derived from) the Work and for which the |
||||
editorial revisions, annotations, elaborations, or other modifications |
||||
represent, as a whole, an original work of authorship. For the purposes |
||||
of this License, Derivative Works shall not include works that remain |
||||
separable from, or merely link (or bind by name) to the interfaces of, |
||||
the Work and Derivative Works thereof. |
||||
|
||||
"Contribution" shall mean any work of authorship, including |
||||
the original version of the Work and any modifications or additions |
||||
to that Work or Derivative Works thereof, that is intentionally |
||||
submitted to Licensor for inclusion in the Work by the copyright owner |
||||
or by an individual or Legal Entity authorized to submit on behalf of |
||||
the copyright owner. For the purposes of this definition, "submitted" |
||||
means any form of electronic, verbal, or written communication sent |
||||
to the Licensor or its representatives, including but not limited to |
||||
communication on electronic mailing lists, source code control systems, |
||||
and issue tracking systems that are managed by, or on behalf of, the |
||||
Licensor for the purpose of discussing and improving the Work, but |
||||
excluding communication that is conspicuously marked or otherwise |
||||
designated in writing by the copyright owner as "Not a Contribution." |
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity |
||||
on behalf of whom a Contribution has been received by Licensor and |
||||
subsequently incorporated within the Work. |
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of |
||||
this License, each Contributor hereby grants to You a perpetual, |
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable |
||||
copyright license to reproduce, prepare Derivative Works of, |
||||
publicly display, publicly perform, sublicense, and distribute the |
||||
Work and such Derivative Works in Source or Object form. |
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of |
||||
this License, each Contributor hereby grants to You a perpetual, |
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable |
||||
(except as stated in this section) patent license to make, have made, |
||||
use, offer to sell, sell, import, and otherwise transfer the Work, |
||||
where such license applies only to those patent claims licensable |
||||
by such Contributor that are necessarily infringed by their |
||||
Contribution(s) alone or by combination of their Contribution(s) |
||||
with the Work to which such Contribution(s) was submitted. If You |
||||
institute patent litigation against any entity (including a |
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work |
||||
or a Contribution incorporated within the Work constitutes direct |
||||
or contributory patent infringement, then any patent licenses |
||||
granted to You under this License for that Work shall terminate |
||||
as of the date such litigation is filed. |
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the |
||||
Work or Derivative Works thereof in any medium, with or without |
||||
modifications, and in Source or Object form, provided that You |
||||
meet the following conditions: |
||||
|
||||
(a) You must give any other recipients of the Work or |
||||
Derivative Works a copy of this License; and |
||||
|
||||
(b) You must cause any modified files to carry prominent notices |
||||
stating that You changed the files; and |
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works |
||||
that You distribute, all copyright, patent, trademark, and |
||||
attribution notices from the Source form of the Work, |
||||
excluding those notices that do not pertain to any part of |
||||
the Derivative Works; and |
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its |
||||
distribution, then any Derivative Works that You distribute must |
||||
include a readable copy of the attribution notices contained |
||||
within such NOTICE file, excluding those notices that do not |
||||
pertain to any part of the Derivative Works, in at least one |
||||
of the following places: within a NOTICE text file distributed |
||||
as part of the Derivative Works; within the Source form or |
||||
documentation, if provided along with the Derivative Works; or, |
||||
within a display generated by the Derivative Works, if and |
||||
wherever such third-party notices normally appear. The contents |
||||
of the NOTICE file are for informational purposes only and |
||||
do not modify the License. You may add Your own attribution |
||||
notices within Derivative Works that You distribute, alongside |
||||
or as an addendum to the NOTICE text from the Work, provided |
||||
that such additional attribution notices cannot be construed |
||||
as modifying the License. |
||||
|
||||
You may add Your own copyright statement to Your modifications and |
||||
may provide additional or different license terms and conditions |
||||
for use, reproduction, or distribution of Your modifications, or |
||||
for any such Derivative Works as a whole, provided Your use, |
||||
reproduction, and distribution of the Work otherwise complies with |
||||
the conditions stated in this License. |
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise, |
||||
any Contribution intentionally submitted for inclusion in the Work |
||||
by You to the Licensor shall be under the terms and conditions of |
||||
this License, without any additional terms or conditions. |
||||
Notwithstanding the above, nothing herein shall supersede or modify |
||||
the terms of any separate license agreement you may have executed |
||||
with Licensor regarding such Contributions. |
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade |
||||
names, trademarks, service marks, or product names of the Licensor, |
||||
except as required for reasonable and customary use in describing the |
||||
origin of the Work and reproducing the content of the NOTICE file. |
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or |
||||
agreed to in writing, Licensor provides the Work (and each |
||||
Contributor provides its Contributions) on an "AS IS" BASIS, |
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
||||
implied, including, without limitation, any warranties or conditions |
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A |
||||
PARTICULAR PURPOSE. You are solely responsible for determining the |
||||
appropriateness of using or redistributing the Work and assume any |
||||
risks associated with Your exercise of permissions under this License. |
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory, |
||||
whether in tort (including negligence), contract, or otherwise, |
||||
unless required by applicable law (such as deliberate and grossly |
||||
negligent acts) or agreed to in writing, shall any Contributor be |
||||
liable to You for damages, including any direct, indirect, special, |
||||
incidental, or consequential damages of any character arising as a |
||||
result of this License or out of the use or inability to use the |
||||
Work (including but not limited to damages for loss of goodwill, |
||||
work stoppage, computer failure or malfunction, or any and all |
||||
other commercial damages or losses), even if such Contributor |
||||
has been advised of the possibility of such damages. |
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing |
||||
the Work or Derivative Works thereof, You may choose to offer, |
||||
and charge a fee for, acceptance of support, warranty, indemnity, |
||||
or other liability obligations and/or rights consistent with this |
||||
License. However, in accepting such obligations, You may act only |
||||
on Your own behalf and on Your sole responsibility, not on behalf |
||||
of any other Contributor, and only if You agree to indemnify, |
||||
defend, and hold each Contributor harmless for any liability |
||||
incurred by, or claims asserted against, such Contributor by reason |
||||
of your accepting any such warranty or additional liability. |
||||
|
||||
END OF TERMS AND CONDITIONS |
||||
|
||||
APPENDIX: How to apply the Apache License to your work. |
||||
|
||||
To apply the Apache License to your work, attach the following |
||||
boilerplate notice, with the fields enclosed by brackets "[]" |
||||
replaced with your own identifying information. (Don't include |
||||
the brackets!) The text should be enclosed in the appropriate |
||||
comment syntax for the file format. We also recommend that a |
||||
file or class name and description of purpose be included on the |
||||
same "printed page" as the copyright notice for easier |
||||
identification within third-party archives. |
||||
|
||||
Copyright [yyyy] [name of copyright owner] |
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License"); |
||||
you may not use this file except in compliance with the License. |
||||
You may obtain a copy of the License at |
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0 |
||||
|
||||
Unless required by applicable law or agreed to in writing, software |
||||
distributed under the License is distributed on an "AS IS" BASIS, |
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
See the License for the specific language governing permissions and |
||||
limitations under the License. |
@ -0,0 +1,15 @@
@@ -0,0 +1,15 @@
|
||||
Copyright © 2002-2007 Charlie Poole |
||||
Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov |
||||
Copyright © 2000-2002 Philip A. Craig |
||||
|
||||
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. |
||||
|
||||
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: |
||||
|
||||
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required. |
||||
|
||||
Portions Copyright © 2002-2007 Charlie Poole or Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright © 2000-2002 Philip A. Craig |
||||
|
||||
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. |
||||
|
||||
3. This notice may not be removed or altered from any source distribution. |
@ -0,0 +1,116 @@
@@ -0,0 +1,116 @@
|
||||
<configuration> |
||||
|
||||
<!-- Do not remove. Sets up configsectionhandler section for log4net --> |
||||
<configSections> |
||||
<section name="log4net" type="System.Configuration.IgnoreSectionHandler" /> |
||||
</configSections> |
||||
|
||||
<!-- |
||||
Application settings for NUnit-console.exe. Do NOT put settings |
||||
for use by your tests here. |
||||
--> |
||||
<appSettings> |
||||
|
||||
<!-- |
||||
Specify the location to be used by .NET for the cache |
||||
--> |
||||
<add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" /> |
||||
|
||||
</appSettings> |
||||
|
||||
<system.diagnostics> |
||||
<switches> |
||||
<add name="NTrace" value="4" /> |
||||
</switches> |
||||
<trace autoflush="true" indentsize="4"> |
||||
<listeners> |
||||
<add name="NUnitInternalTrace" type="System.Diagnostics.TextWriterTraceListener" |
||||
initializeData="C:\NUnitPrimaryTrace.txt"/> |
||||
</listeners> |
||||
</trace> |
||||
</system.diagnostics> |
||||
|
||||
<!-- |
||||
The startup section may be used to specify the runtime versions |
||||
supported in the order that they will be used if more than one |
||||
is present. As supplied, this section is commented out, which |
||||
causes nunit-console to use the version of the framework with |
||||
which it was built. |
||||
|
||||
Since .NET 1.0 does not recognize the <supportedRuntime> elements, |
||||
a <requiredRuntime> element is used in case it is the only version |
||||
of the framework that is installed. |
||||
--> |
||||
<!-- |
||||
<startup> |
||||
<supportedRuntime version="v2.0.50727" /> |
||||
<supportedRuntime version="v2.0.50215" /> |
||||
<supportedRuntime version="v2.0.40607" /> |
||||
<supportedRuntime version="v1.1.4322" /> |
||||
<supportedRuntime version="v1.0.3705" /> |
||||
|
||||
<requiredRuntime version="v1.0.3705" /> |
||||
</startup> |
||||
--> |
||||
|
||||
<!-- |
||||
The following <runtime> section allows running nunit under |
||||
.NET 1.0 by redirecting assemblies. The appliesTo attribute |
||||
causes the section to be ignored except under .NET 1.0version 1 |
||||
on a machine with only the .NET version 1.0 runtime installed. |
||||
If application and its tests were built for .NET 1.1 you will |
||||
also need to redirect system assemblies in the test config file. |
||||
--> |
||||
|
||||
<runtime> |
||||
|
||||
<legacyUnhandledExceptionPolicy enabled="1" /> |
||||
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" |
||||
appliesTo="v1.0.3705"> |
||||
|
||||
<dependentAssembly> |
||||
<assemblyIdentity name="System" |
||||
publicKeyToken="b77a5c561934e089" |
||||
culture="neutral"/> |
||||
<bindingRedirect oldVersion="1.0.5000.0" |
||||
newVersion="1.0.3300.0"/> |
||||
</dependentAssembly> |
||||
|
||||
<dependentAssembly> |
||||
<assemblyIdentity name="System.Data" |
||||
publicKeyToken="b77a5c561934e089" |
||||
culture="neutral"/> |
||||
<bindingRedirect oldVersion="1.0.5000.0" |
||||
newVersion="1.0.3300.0"/> |
||||
</dependentAssembly> |
||||
|
||||
<dependentAssembly> |
||||
<assemblyIdentity name="System.Drawing" |
||||
publicKeyToken="b03f5f7f11d50a3a" |
||||
culture="neutral"/> |
||||
<bindingRedirect oldVersion="1.0.5000.0" |
||||
newVersion="1.0.3300.0"/> |
||||
</dependentAssembly> |
||||
|
||||
<dependentAssembly> |
||||
<assemblyIdentity name="System.Windows.Forms" |
||||
publicKeyToken="b77a5c561934e089" |
||||
culture="neutral"/> |
||||
<bindingRedirect oldVersion="1.0.5000.0" |
||||
newVersion="1.0.3300.0"/> |
||||
</dependentAssembly> |
||||
|
||||
<dependentAssembly> |
||||
<assemblyIdentity name="System.Xml" |
||||
publicKeyToken="b77a5c561934e089" |
||||
culture="neutral"/> |
||||
<bindingRedirect oldVersion="1.0.5000.0" |
||||
newVersion="1.0.3300.0"/> |
||||
</dependentAssembly> |
||||
|
||||
</assemblyBinding> |
||||
|
||||
</runtime> |
||||
|
||||
</configuration> |
@ -0,0 +1,116 @@
@@ -0,0 +1,116 @@
|
||||
<configuration> |
||||
|
||||
<!-- Do not remove. Sets up configsectionhandler section for log4net --> |
||||
<configSections> |
||||
<section name="log4net" type="System.Configuration.IgnoreSectionHandler" /> |
||||
</configSections> |
||||
|
||||
<!-- |
||||
Application settings for NUnit-console.exe. Do NOT put settings |
||||
for use by your tests here. |
||||
--> |
||||
<appSettings> |
||||
|
||||
<!-- |
||||
Specify the location to be used by .NET for the cache |
||||
--> |
||||
<add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" /> |
||||
|
||||
</appSettings> |
||||
|
||||
<system.diagnostics> |
||||
<switches> |
||||
<add name="NTrace" value="4" /> |
||||
</switches> |
||||
<trace autoflush="true" indentsize="4"> |
||||
<listeners> |
||||
<add name="NUnitInternalTrace" type="System.Diagnostics.TextWriterTraceListener" |
||||
initializeData="C:\NUnitPrimaryTrace.txt"/> |
||||
</listeners> |
||||
</trace> |
||||
</system.diagnostics> |
||||
|
||||
<!-- |
||||
The startup section may be used to specify the runtime versions |
||||
supported in the order that they will be used if more than one |
||||
is present. As supplied, this section is commented out, which |
||||
causes nunit-console to use the version of the framework with |
||||
which it was built. |
||||
|
||||
Since .NET 1.0 does not recognize the <supportedRuntime> elements, |
||||
a <requiredRuntime> element is used in case it is the only version |
||||
of the framework that is installed. |
||||
--> |
||||
<!-- |
||||
<startup> |
||||
<supportedRuntime version="v2.0.50727" /> |
||||
<supportedRuntime version="v2.0.50215" /> |
||||
<supportedRuntime version="v2.0.40607" /> |
||||
<supportedRuntime version="v1.1.4322" /> |
||||
<supportedRuntime version="v1.0.3705" /> |
||||
|
||||
<requiredRuntime version="v1.0.3705" /> |
||||
</startup> |
||||
--> |
||||
|
||||
<!-- |
||||
The following <runtime> section allows running nunit under |
||||
.NET 1.0 by redirecting assemblies. The appliesTo attribute |
||||
causes the section to be ignored except under .NET 1.0version 1 |
||||
on a machine with only the .NET version 1.0 runtime installed. |
||||
If application and its tests were built for .NET 1.1 you will |
||||
also need to redirect system assemblies in the test config file. |
||||
--> |
||||
|
||||
<runtime> |
||||
|
||||
<legacyUnhandledExceptionPolicy enabled="1" /> |
||||
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" |
||||
appliesTo="v1.0.3705"> |
||||
|
||||
<dependentAssembly> |
||||
<assemblyIdentity name="System" |
||||
publicKeyToken="b77a5c561934e089" |
||||
culture="neutral"/> |
||||
<bindingRedirect oldVersion="1.0.5000.0" |
||||
newVersion="1.0.3300.0"/> |
||||
</dependentAssembly> |
||||
|
||||
<dependentAssembly> |
||||
<assemblyIdentity name="System.Data" |
||||
publicKeyToken="b77a5c561934e089" |
||||
culture="neutral"/> |
||||
<bindingRedirect oldVersion="1.0.5000.0" |
||||
newVersion="1.0.3300.0"/> |
||||
</dependentAssembly> |
||||
|
||||
<dependentAssembly> |
||||
<assemblyIdentity name="System.Drawing" |
||||
publicKeyToken="b03f5f7f11d50a3a" |
||||
culture="neutral"/> |
||||
<bindingRedirect oldVersion="1.0.5000.0" |
||||
newVersion="1.0.3300.0"/> |
||||
</dependentAssembly> |
||||
|
||||
<dependentAssembly> |
||||
<assemblyIdentity name="System.Windows.Forms" |
||||
publicKeyToken="b77a5c561934e089" |
||||
culture="neutral"/> |
||||
<bindingRedirect oldVersion="1.0.5000.0" |
||||
newVersion="1.0.3300.0"/> |
||||
</dependentAssembly> |
||||
|
||||
<dependentAssembly> |
||||
<assemblyIdentity name="System.Xml" |
||||
publicKeyToken="b77a5c561934e089" |
||||
culture="neutral"/> |
||||
<bindingRedirect oldVersion="1.0.5000.0" |
||||
newVersion="1.0.3300.0"/> |
||||
</dependentAssembly> |
||||
|
||||
</assemblyBinding> |
||||
|
||||
</runtime> |
||||
|
||||
</configuration> |
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,39 @@
@@ -0,0 +1,39 @@
|
||||
// ****************************************************************
|
||||
// This is free software licensed under the NUnit license. You
|
||||
// may obtain a copy of the license as well as information regarding
|
||||
// copyright ownership at http://nunit.org/?p=license&r=2.4.
|
||||
//
|
||||
|
||||
using System.Reflection; |
||||
|
||||
//
|
||||
// Common Information about all NUnit assemblies is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
//
|
||||
[assembly: AssemblyTitle("Extended NUnit console runner")] |
||||
[assembly: AssemblyDescription("NUnit-console extended by Daniel Grunwald and Matt Ward to support writing test results to a file as results are known")] |
||||
[assembly: AssemblyConfiguration("")] |
||||
[assembly: AssemblyCompany("NUnit.org")] |
||||
[assembly: AssemblyProduct("NUnit")] |
||||
[assembly: AssemblyCopyright("Copyright (C) 2002-2007 Charlie Poole.\r\n" + |
||||
"Copyright (C) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov.\r\n" + |
||||
"Copyright (C) 2000-2003 Philip Craig.\r\n" + |
||||
"Copyright (C) 2006 Daniel Grunwald.\r\n" + |
||||
"Copyright (C) 2006-2008 Matt Ward.\r\n" + |
||||
"All Rights Reserved.")] |
||||
[assembly: AssemblyTrademark("")] |
||||
[assembly: AssemblyCulture("")] |
||||
|
||||
//
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Revision and Build Numbers
|
||||
// by using the '*' as shown below:
|
||||
|
||||
[assembly: AssemblyVersion("2.4.8")] |
@ -0,0 +1,274 @@
@@ -0,0 +1,274 @@
|
||||
using System; |
||||
using System.IO; |
||||
using System.Diagnostics; |
||||
using System.Text.RegularExpressions; |
||||
using System.Text; |
||||
using System.Collections; |
||||
using System.Collections.Specialized; |
||||
using NUnit.Core; |
||||
using NUnit.Util; |
||||
|
||||
namespace NUnit.ConsoleRunner |
||||
{ |
||||
/// <summary>
|
||||
/// Custom event listener that writes out test results as they
|
||||
/// occur to a separate file.
|
||||
/// </summary>
|
||||
public class ExtendedEventCollector : MarshalByRefObject, EventListener |
||||
{ |
||||
private int testRunCount; |
||||
private int testIgnoreCount; |
||||
private int failureCount; |
||||
private int level; |
||||
|
||||
private ConsoleOptions options; |
||||
private TextWriter outWriter; |
||||
private TextWriter errorWriter; |
||||
private TextWriter testResultWriter; |
||||
|
||||
StringCollection messages; |
||||
|
||||
private bool progress = false; |
||||
private string currentTestName; |
||||
private bool writeResults = false; |
||||
|
||||
private ArrayList unhandledExceptions = new ArrayList(); |
||||
|
||||
public ExtendedEventCollector( ConsoleOptions options, TextWriter outWriter, TextWriter errorWriter, TextWriter testResultWriter) |
||||
{ |
||||
level = 0; |
||||
this.options = options; |
||||
this.outWriter = outWriter; |
||||
this.errorWriter = errorWriter; |
||||
this.currentTestName = string.Empty; |
||||
this.progress = !options.xmlConsole && !options.labels && !options.nodots; |
||||
this.testResultWriter = testResultWriter; |
||||
this.writeResults = testResultWriter != null; |
||||
|
||||
AppDomain.CurrentDomain.UnhandledException += |
||||
new UnhandledExceptionEventHandler(OnUnhandledException); |
||||
} |
||||
|
||||
public bool HasExceptions |
||||
{ |
||||
get { return unhandledExceptions.Count > 0; } |
||||
} |
||||
|
||||
public void WriteExceptions() |
||||
{ |
||||
Console.WriteLine(); |
||||
Console.WriteLine("Unhandled exceptions:"); |
||||
int index = 1; |
||||
foreach( string msg in unhandledExceptions ) |
||||
Console.WriteLine( "{0}) {1}", index++, msg ); |
||||
} |
||||
|
||||
public void RunStarted(string name, int testCount) |
||||
{ |
||||
} |
||||
|
||||
public void RunFinished(TestResult result) |
||||
{ |
||||
} |
||||
|
||||
public void RunFinished(Exception exception) |
||||
{ |
||||
} |
||||
|
||||
public void TestFinished(TestCaseResult testResult) |
||||
{ |
||||
if(testResult.Executed) |
||||
{ |
||||
testRunCount++; |
||||
|
||||
if(testResult.IsFailure) |
||||
{ |
||||
failureCount++; |
||||
|
||||
if ( progress ) |
||||
Console.Write("F"); |
||||
|
||||
messages.Add( string.Format( "{0}) {1} :", failureCount, testResult.Test.TestName.FullName ) ); |
||||
messages.Add( testResult.Message.Trim( Environment.NewLine.ToCharArray() ) ); |
||||
|
||||
string stackTrace = StackTraceFilter.Filter( testResult.StackTrace ); |
||||
if ( stackTrace != null && stackTrace != string.Empty ) |
||||
{ |
||||
string[] trace = stackTrace.Split( System.Environment.NewLine.ToCharArray() ); |
||||
foreach( string s in trace ) |
||||
{ |
||||
if ( s != string.Empty ) |
||||
{ |
||||
string link = Regex.Replace( s.Trim(), @".* in (.*):line (.*)", "$1($2)"); |
||||
messages.Add( string.Format( "at\n{0}", link ) ); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
else |
||||
{ |
||||
testIgnoreCount++; |
||||
|
||||
if ( progress ) |
||||
Console.Write("N"); |
||||
} |
||||
|
||||
if (writeResults) { |
||||
WriteTestResult(testResult); |
||||
} |
||||
|
||||
currentTestName = string.Empty; |
||||
} |
||||
|
||||
public void TestStarted(TestName testName) |
||||
{ |
||||
currentTestName = testName.FullName; |
||||
|
||||
if ( options.labels ) |
||||
outWriter.WriteLine("***** {0}", currentTestName ); |
||||
|
||||
if ( progress ) |
||||
Console.Write("."); |
||||
} |
||||
|
||||
public void SuiteStarted(TestName testName) |
||||
{ |
||||
if ( level++ == 0 ) |
||||
{ |
||||
messages = new StringCollection(); |
||||
testRunCount = 0; |
||||
testIgnoreCount = 0; |
||||
failureCount = 0; |
||||
Trace.WriteLine( "################################ UNIT TESTS ################################" ); |
||||
Trace.WriteLine( "Running tests in '" + testName.FullName + "'..." ); |
||||
} |
||||
} |
||||
|
||||
public void SuiteFinished(TestSuiteResult suiteResult) |
||||
{ |
||||
if ( --level == 0) |
||||
{ |
||||
Trace.WriteLine( "############################################################################" ); |
||||
|
||||
if (messages.Count == 0) |
||||
{ |
||||
Trace.WriteLine( "############## S U C C E S S #################" ); |
||||
} |
||||
else |
||||
{ |
||||
Trace.WriteLine( "############## F A I L U R E S #################" ); |
||||
|
||||
foreach ( string s in messages ) |
||||
{ |
||||
Trace.WriteLine(s); |
||||
} |
||||
} |
||||
|
||||
Trace.WriteLine( "############################################################################" ); |
||||
Trace.WriteLine( "Executed tests : " + testRunCount ); |
||||
Trace.WriteLine( "Ignored tests : " + testIgnoreCount ); |
||||
Trace.WriteLine( "Failed tests : " + failureCount ); |
||||
Trace.WriteLine( "Unhandled exceptions : " + unhandledExceptions.Count); |
||||
Trace.WriteLine( "Total time : " + suiteResult.Time + " seconds" ); |
||||
Trace.WriteLine( "############################################################################"); |
||||
} |
||||
} |
||||
|
||||
private void OnUnhandledException(object sender, UnhandledExceptionEventArgs e) |
||||
{ |
||||
if (e.ExceptionObject.GetType() != typeof(System.Threading.ThreadAbortException)) |
||||
{ |
||||
this.UnhandledException((Exception)e.ExceptionObject); |
||||
} |
||||
} |
||||
|
||||
|
||||
public void UnhandledException( Exception exception ) |
||||
{ |
||||
// If we do labels, we already have a newline
|
||||
unhandledExceptions.Add(currentTestName + " : " + exception.ToString()); |
||||
//if (!options.labels) outWriter.WriteLine();
|
||||
string msg = string.Format("##### Unhandled Exception while running {0}", currentTestName); |
||||
//outWriter.WriteLine(msg);
|
||||
//outWriter.WriteLine(exception.ToString());
|
||||
|
||||
Trace.WriteLine(msg); |
||||
Trace.WriteLine(exception.ToString()); |
||||
} |
||||
|
||||
public void TestOutput( TestOutput output) |
||||
{ |
||||
switch ( output.Type ) |
||||
{ |
||||
case TestOutputType.Out: |
||||
outWriter.Write( output.Text ); |
||||
break; |
||||
case TestOutputType.Error: |
||||
errorWriter.Write( output.Text ); |
||||
break; |
||||
} |
||||
} |
||||
|
||||
|
||||
public override object InitializeLifetimeService() |
||||
{ |
||||
return null; |
||||
} |
||||
|
||||
/// <summary>
|
||||
/// Writes a single test result to the output result file.
|
||||
/// </summary>
|
||||
void WriteTestResult(TestCaseResult testResult) |
||||
{ |
||||
testResultWriter.WriteLine("Name: " + testResult.Name); |
||||
|
||||
if (testResult.IsFailure) |
||||
{ |
||||
testResultWriter.WriteLine("Result: Failure"); |
||||
testResultWriter.WriteLine("Message: " + EncodeText(testResult.Message)); |
||||
testResultWriter.WriteLine("StackTrace: " + EncodeText(StackTraceFilter.Filter(testResult.StackTrace))); |
||||
} |
||||
else if (!testResult.Executed) |
||||
{ |
||||
testResultWriter.WriteLine("Result: Ignored"); |
||||
} |
||||
else if (testResult.IsSuccess) |
||||
{ |
||||
testResultWriter.WriteLine("Result: Success"); |
||||
} |
||||
} |
||||
|
||||
/// <summary>
|
||||
/// Replaces the first character on each new line with a space.
|
||||
/// The first line does not have the extra space added.
|
||||
/// </summary>
|
||||
static string EncodeText(string s) |
||||
{ |
||||
if (s == null || s.Length == 0) |
||||
{ |
||||
return String.Empty; |
||||
} |
||||
|
||||
s = s.TrimEnd(Environment.NewLine.ToCharArray()); |
||||
|
||||
StringBuilder encodedText = new StringBuilder(); |
||||
foreach (char ch in s) |
||||
{ |
||||
switch (ch) |
||||
{ |
||||
case '\n': |
||||
encodedText.Append("\r\n "); |
||||
break; |
||||
case '\r': |
||||
// Ignore.
|
||||
break; |
||||
default: |
||||
encodedText.Append(ch); |
||||
break; |
||||
} |
||||
} |
||||
return encodedText.ToString(); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,28 @@
@@ -0,0 +1,28 @@
|
||||
/* |
||||
* Created by SharpDevelop. |
||||
* User: Daniel Grunwald |
||||
* Date: 03.02.2006 |
||||
* Time: 23:13 |
||||
*/ |
||||
|
||||
using System; |
||||
using Codeblast; |
||||
|
||||
namespace NUnit.ConsoleRunner |
||||
{ |
||||
public class ExtendedConsoleOptions : ConsoleOptions |
||||
{ |
||||
public ExtendedConsoleOptions(string[] args) : base(args) {} |
||||
|
||||
[Option(Description="File to receive test results as each test is run")] |
||||
public string results; |
||||
|
||||
public bool IsResults |
||||
{ |
||||
get |
||||
{ |
||||
return (results != null) && (results.Length != 0); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,225 @@
@@ -0,0 +1,225 @@
|
||||
// ****************************************************************
|
||||
// This is free software licensed under the NUnit license. You
|
||||
// may obtain a copy of the license as well as information regarding
|
||||
// copyright ownership at http://nunit.org/?p=license&r=2.4.
|
||||
// ****************************************************************
|
||||
|
||||
// This version of NUnit-console is modified to support:
|
||||
// 1) Writing all tests results to a file as the test results are known.
|
||||
|
||||
// ****************************************************************
|
||||
// This is free software licensed under the NUnit license. You
|
||||
// may obtain a copy of the license as well as information regarding
|
||||
// copyright ownership at http://nunit.org/?p=license&r=2.4.
|
||||
// ****************************************************************
|
||||
|
||||
namespace NUnit.ConsoleRunner |
||||
{ |
||||
using System; |
||||
using System.IO; |
||||
using System.Reflection; |
||||
using System.Xml; |
||||
using System.Resources; |
||||
using System.Text; |
||||
using NUnit.Core; |
||||
using NUnit.Core.Filters; |
||||
using NUnit.Util; |
||||
|
||||
/// <summary>
|
||||
/// Summary description for ConsoleUi.
|
||||
/// </summary>
|
||||
public class ExtendedConsoleUi |
||||
{ |
||||
public static readonly int OK = 0; |
||||
public static readonly int INVALID_ARG = -1; |
||||
public static readonly int FILE_NOT_FOUND = -2; |
||||
public static readonly int FIXTURE_NOT_FOUND = -3; |
||||
public static readonly int TRANSFORM_ERROR = -4; |
||||
public static readonly int UNEXPECTED_ERROR = -100; |
||||
|
||||
public ExtendedConsoleUi() |
||||
{ |
||||
} |
||||
|
||||
public int Execute( ExtendedConsoleOptions options ) |
||||
{ |
||||
XmlTextReader transformReader = GetTransformReader(options); |
||||
if(transformReader == null) return FILE_NOT_FOUND; |
||||
|
||||
TextWriter outWriter = Console.Out; |
||||
bool redirectOutput = options.output != null && options.output != string.Empty; |
||||
if ( redirectOutput ) |
||||
{ |
||||
StreamWriter outStreamWriter = new StreamWriter( options.output ); |
||||
outStreamWriter.AutoFlush = true; |
||||
outWriter = outStreamWriter; |
||||
} |
||||
|
||||
TextWriter errorWriter = Console.Error; |
||||
bool redirectError = options.err != null && options.err != string.Empty; |
||||
if ( redirectError ) |
||||
{ |
||||
StreamWriter errorStreamWriter = new StreamWriter( options.err ); |
||||
errorStreamWriter.AutoFlush = true; |
||||
errorWriter = errorStreamWriter; |
||||
} |
||||
|
||||
TextWriter testResultWriter = null; |
||||
if ( options.IsResults ) |
||||
{ |
||||
testResultWriter = new StreamWriter ( options.results, false, Encoding.UTF8 ); |
||||
((StreamWriter)testResultWriter).AutoFlush = true; |
||||
} |
||||
|
||||
TestRunner testRunner = MakeRunnerFromCommandLine( options ); |
||||
|
||||
try |
||||
{ |
||||
if (testRunner.Test == null) |
||||
{ |
||||
testRunner.Unload(); |
||||
Console.Error.WriteLine("Unable to locate fixture {0}", options.fixture); |
||||
return FIXTURE_NOT_FOUND; |
||||
} |
||||
|
||||
ExtendedEventCollector collector = new ExtendedEventCollector( options, outWriter, errorWriter, testResultWriter ); |
||||
|
||||
TestFilter testFilter = TestFilter.Empty; |
||||
if ( options.run != null && options.run != string.Empty ) |
||||
{ |
||||
Console.WriteLine( "Selected test: " + options.run ); |
||||
testFilter = new SimpleNameFilter( options.run ); |
||||
} |
||||
|
||||
if ( options.include != null && options.include != string.Empty ) |
||||
{ |
||||
Console.WriteLine( "Included categories: " + options.include ); |
||||
TestFilter includeFilter = new CategoryExpression( options.include ).Filter; |
||||
if ( testFilter.IsEmpty ) |
||||
testFilter = includeFilter; |
||||
else |
||||
testFilter = new AndFilter( testFilter, includeFilter ); |
||||
} |
||||
|
||||
if ( options.exclude != null && options.exclude != string.Empty ) |
||||
{ |
||||
Console.WriteLine( "Excluded categories: " + options.exclude ); |
||||
TestFilter excludeFilter = new NotFilter( new CategoryExpression( options.exclude ).Filter ); |
||||
if ( testFilter.IsEmpty ) |
||||
testFilter = excludeFilter; |
||||
else if ( testFilter is AndFilter ) |
||||
((AndFilter)testFilter).Add( excludeFilter ); |
||||
else |
||||
testFilter = new AndFilter( testFilter, excludeFilter ); |
||||
} |
||||
|
||||
TestResult result = null; |
||||
string savedDirectory = Environment.CurrentDirectory; |
||||
TextWriter savedOut = Console.Out; |
||||
TextWriter savedError = Console.Error; |
||||
|
||||
try |
||||
{ |
||||
result = testRunner.Run( collector, testFilter ); |
||||
} |
||||
finally |
||||
{ |
||||
outWriter.Flush(); |
||||
errorWriter.Flush(); |
||||
|
||||
if ( redirectOutput ) |
||||
outWriter.Close(); |
||||
if ( redirectError ) |
||||
errorWriter.Close(); |
||||
if ( options.IsResults ) |
||||
testResultWriter.Close(); |
||||
|
||||
Environment.CurrentDirectory = savedDirectory; |
||||
Console.SetOut( savedOut ); |
||||
Console.SetError( savedError ); |
||||
} |
||||
|
||||
Console.WriteLine(); |
||||
|
||||
string xmlOutput = CreateXmlOutput( result ); |
||||
|
||||
if (options.xmlConsole) |
||||
{ |
||||
Console.WriteLine(xmlOutput); |
||||
} |
||||
else |
||||
{ |
||||
try |
||||
{ |
||||
//CreateSummaryDocument(xmlOutput, transformReader );
|
||||
XmlResultTransform xform = new XmlResultTransform( transformReader ); |
||||
xform.Transform( new StringReader( xmlOutput ), Console.Out ); |
||||
} |
||||
catch( Exception ex ) |
||||
{ |
||||
Console.WriteLine( "Error: {0}", ex.Message ); |
||||
return TRANSFORM_ERROR; |
||||
} |
||||
} |
||||
|
||||
// Write xml output here
|
||||
string xmlResultFile = options.xml == null || options.xml == string.Empty |
||||
? "TestResult.xml" : options.xml; |
||||
|
||||
if( options.xml != null ) |
||||
{ |
||||
using ( StreamWriter writer = new StreamWriter( xmlResultFile ) ) |
||||
{ |
||||
writer.Write(xmlOutput); |
||||
} |
||||
} |
||||
|
||||
//if ( testRunner != null )
|
||||
// testRunner.Unload();
|
||||
|
||||
if ( collector.HasExceptions ) |
||||
{ |
||||
collector.WriteExceptions(); |
||||
return UNEXPECTED_ERROR; |
||||
} |
||||
|
||||
if ( !result.IsFailure ) return OK; |
||||
|
||||
ResultSummarizer summ = new ResultSummarizer( result ); |
||||
return summ.FailureCount; |
||||
} |
||||
finally |
||||
{ |
||||
testRunner.Unload(); |
||||
} |
||||
} |
||||
|
||||
#region Helper Methods
|
||||
private static XmlTextReader GetTransformReader(ConsoleOptions parser) |
||||
{ |
||||
return (XmlTextReader)typeof(ConsoleUi).InvokeMember("GetTransformReader", |
||||
BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.InvokeMethod, |
||||
null, null, new object[] { parser }); |
||||
} |
||||
|
||||
private static TestRunner MakeRunnerFromCommandLine( ConsoleOptions options ) |
||||
{ |
||||
return (TestRunner)typeof(ConsoleUi).InvokeMember("MakeRunnerFromCommandLine", |
||||
BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.InvokeMethod, |
||||
null, null, new object[] { options }); |
||||
|
||||
} |
||||
|
||||
private static string CreateXmlOutput( TestResult result ) |
||||
{ |
||||
StringBuilder builder = new StringBuilder(); |
||||
XmlResultVisitor resultVisitor = new XmlResultVisitor(new StringWriter( builder ), result); |
||||
result.Accept(resultVisitor); |
||||
resultVisitor.Write(); |
||||
|
||||
return builder.ToString(); |
||||
} |
||||
#endregion
|
||||
} |
||||
} |
||||
|
@ -0,0 +1,121 @@
@@ -0,0 +1,121 @@
|
||||
// This version of NUnit-console is modified to support:
|
||||
// 1) Writing all tests results to a file as the test results are known.
|
||||
|
||||
using System; |
||||
using System.IO; |
||||
using System.Reflection; |
||||
using NUnit.Core; |
||||
using NUnit.Util; |
||||
|
||||
|
||||
namespace NUnit.ConsoleRunner |
||||
{ |
||||
/// <summary>
|
||||
/// Modified version of NUnit's Runner class to support the ExtendedConsoleOptions
|
||||
/// and the ExtendedConsoleUi class.
|
||||
/// </summary>
|
||||
public class Runner |
||||
{ |
||||
[STAThread] |
||||
public static int Main(string[] args) |
||||
{ |
||||
NTrace.Info( "NUnit-console.exe starting" ); |
||||
|
||||
ExtendedConsoleOptions options = new ExtendedConsoleOptions(args); |
||||
|
||||
if(!options.nologo) |
||||
WriteCopyright(); |
||||
|
||||
if(options.help) |
||||
{ |
||||
options.Help(); |
||||
return ConsoleUi.OK; |
||||
} |
||||
|
||||
if(options.NoArgs) |
||||
{ |
||||
Console.Error.WriteLine("fatal error: no inputs specified"); |
||||
options.Help(); |
||||
return ConsoleUi.OK; |
||||
} |
||||
|
||||
if(!options.Validate()) |
||||
{ |
||||
foreach( string arg in options.InvalidArguments ) |
||||
Console.Error.WriteLine("fatal error: invalid argument: {0}", arg ); |
||||
options.Help(); |
||||
return ConsoleUi.INVALID_ARG; |
||||
} |
||||
|
||||
// Add Standard Services to ServiceManager
|
||||
ServiceManager.Services.AddService( new SettingsService() ); |
||||
ServiceManager.Services.AddService( new DomainManager() ); |
||||
//ServiceManager.Services.AddService( new RecentFilesService() );
|
||||
//ServiceManager.Services.AddService( new TestLoader() );
|
||||
ServiceManager.Services.AddService( new AddinRegistry() ); |
||||
ServiceManager.Services.AddService( new AddinManager() ); |
||||
// TODO: Resolve conflict with gui testagency when running
|
||||
// console tests under the gui.
|
||||
//ServiceManager.Services.AddService( new TestAgency() );
|
||||
|
||||
// Initialize Services
|
||||
ServiceManager.Services.InitializeServices(); |
||||
|
||||
try |
||||
{ |
||||
ExtendedConsoleUi consoleUi = new ExtendedConsoleUi(); |
||||
return consoleUi.Execute( options ); |
||||
} |
||||
catch( FileNotFoundException ex ) |
||||
{ |
||||
Console.WriteLine( ex.Message ); |
||||
return ConsoleUi.FILE_NOT_FOUND; |
||||
} |
||||
catch( Exception ex ) |
||||
{ |
||||
Console.WriteLine( "Unhandled Exception:\n{0}", ex.ToString() ); |
||||
return ConsoleUi.UNEXPECTED_ERROR; |
||||
} |
||||
finally |
||||
{ |
||||
if(options.wait) |
||||
{ |
||||
Console.Out.WriteLine("\nHit <enter> key to continue"); |
||||
Console.ReadLine(); |
||||
} |
||||
|
||||
NTrace.Info( "NUnit-console.exe terminating" ); |
||||
} |
||||
|
||||
} |
||||
|
||||
private static void WriteCopyright() |
||||
{ |
||||
Assembly executingAssembly = Assembly.GetExecutingAssembly(); |
||||
System.Version version = executingAssembly.GetName().Version; |
||||
|
||||
string productName = "NUnit"; |
||||
string copyrightText = "Copyright (C) 2002-2007 Charlie Poole.\r\nCopyright (C) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov.\r\nCopyright (C) 2000-2002 Philip Craig.\r\nAll Rights Reserved."; |
||||
|
||||
object[] objectAttrs = executingAssembly.GetCustomAttributes(typeof(AssemblyProductAttribute), false); |
||||
if ( objectAttrs.Length > 0 ) |
||||
productName = ((AssemblyProductAttribute)objectAttrs[0]).Product; |
||||
|
||||
objectAttrs = executingAssembly.GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); |
||||
if ( objectAttrs.Length > 0 ) |
||||
copyrightText = ((AssemblyCopyrightAttribute)objectAttrs[0]).Copyright; |
||||
|
||||
Console.WriteLine(String.Format("{0} version {1}", productName, version.ToString(3))); |
||||
Console.WriteLine(copyrightText); |
||||
Console.WriteLine(); |
||||
|
||||
Console.WriteLine( "Runtime Environment - " ); |
||||
RuntimeFramework framework = RuntimeFramework.CurrentFramework; |
||||
Console.WriteLine( string.Format(" OS Version: {0}", Environment.OSVersion ) ); |
||||
Console.WriteLine( string.Format(" CLR Version: {0} ( {1} )", |
||||
Environment.Version, framework.GetDisplayName() ) ); |
||||
|
||||
Console.WriteLine(); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,9 @@
@@ -0,0 +1,9 @@
|
||||
:: ----------------------------------------------------------------- |
||||
:: Builds the 32bit version of NUnit Console and the AnyCPU version. |
||||
:: ----------------------------------------------------------------- |
||||
|
||||
%windir%\microsoft.net\framework\v3.5\msbuild nunit-console.sln /p:PlatformTarget=x86 /property:Configuration=Release /t:Rebuild |
||||
move ..\nunit-console.exe ..\nunit-console-x86.exe |
||||
%windir%\microsoft.net\framework\v3.5\msbuild nunit-console.sln /property:Configuration=Release /t:Rebuild |
||||
|
||||
@IF %ERRORLEVEL% NEQ 0 PAUSE |
@ -0,0 +1,69 @@
@@ -0,0 +1,69 @@
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> |
||||
<PropertyGroup> |
||||
<OutputType>Exe</OutputType> |
||||
<RootNamespace>NUnit.ConsoleRunner</RootNamespace> |
||||
<AssemblyName>nunit-console</AssemblyName> |
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
||||
<ProjectGuid>{FCF6B5AB-45DE-4E4B-A7D4-2F531C2A12BC}</ProjectGuid> |
||||
<AllowUnsafeBlocks>False</AllowUnsafeBlocks> |
||||
<NoStdLib>False</NoStdLib> |
||||
<RegisterForComInterop>False</RegisterForComInterop> |
||||
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies> |
||||
<BaseAddress>285212672</BaseAddress> |
||||
<PlatformTarget>AnyCPU</PlatformTarget> |
||||
<FileAlignment>512</FileAlignment> |
||||
<WarningLevel>4</WarningLevel> |
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
||||
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion> |
||||
<ApplicationIcon>App.ico</ApplicationIcon> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
||||
<OutputPath>..\</OutputPath> |
||||
<Optimize>False</Optimize> |
||||
<DefineConstants>DEBUG;TRACE</DefineConstants> |
||||
<DebugSymbols>true</DebugSymbols> |
||||
<DebugType>Full</DebugType> |
||||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
||||
</PropertyGroup> |
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
||||
<OutputPath>..\</OutputPath> |
||||
<Optimize>True</Optimize> |
||||
<DefineConstants>TRACE</DefineConstants> |
||||
<DebugSymbols>false</DebugSymbols> |
||||
<DebugType>None</DebugType> |
||||
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> |
||||
</PropertyGroup> |
||||
<ItemGroup> |
||||
<Reference Include="nunit.core.interfaces"> |
||||
<HintPath>..\nunit.core.interfaces.dll</HintPath> |
||||
<SpecificVersion>False</SpecificVersion> |
||||
</Reference> |
||||
<Reference Include="System" /> |
||||
<Reference Include="System.Data" /> |
||||
<Reference Include="System.Xml" /> |
||||
<Reference Include="nunit.util"> |
||||
<HintPath>..\nunit.util.dll</HintPath> |
||||
<SpecificVersion>False</SpecificVersion> |
||||
<Private>False</Private> |
||||
</Reference> |
||||
<Reference Include="nunit.core"> |
||||
<HintPath>..\nunit.core.dll</HintPath> |
||||
<SpecificVersion>False</SpecificVersion> |
||||
<Private>False</Private> |
||||
</Reference> |
||||
<Reference Include="nunit-console-runner"> |
||||
<HintPath>..\nunit-console-runner.dll</HintPath> |
||||
<SpecificVersion>False</SpecificVersion> |
||||
<Private>False</Private> |
||||
</Reference> |
||||
</ItemGroup> |
||||
<ItemGroup> |
||||
<Compile Include="ExtendedConsoleUi.cs" /> |
||||
<Compile Include="AssemblyInfo.cs" /> |
||||
<Compile Include="ExtendedConsoleOptions.cs" /> |
||||
<Compile Include="EventCollector.cs" /> |
||||
<Compile Include="ExtendedRunner.cs" /> |
||||
</ItemGroup> |
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" /> |
||||
</Project> |
@ -0,0 +1,18 @@
@@ -0,0 +1,18 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 10.00 |
||||
# Visual Studio 2008 |
||||
# SharpDevelop 3.0.0.2745 |
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit-console", "nunit-console.csproj", "{FCF6B5AB-45DE-4E4B-A7D4-2F531C2A12BC}" |
||||
EndProject |
||||
Global |
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
||||
Debug|Any CPU = Debug|Any CPU |
||||
Release|Any CPU = Release|Any CPU |
||||
EndGlobalSection |
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution |
||||
{FCF6B5AB-45DE-4E4B-A7D4-2F531C2A12BC}.Debug|Any CPU.Build.0 = Debug|Any CPU |
||||
{FCF6B5AB-45DE-4E4B-A7D4-2F531C2A12BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
||||
{FCF6B5AB-45DE-4E4B-A7D4-2F531C2A12BC}.Release|Any CPU.Build.0 = Release|Any CPU |
||||
{FCF6B5AB-45DE-4E4B-A7D4-2F531C2A12BC}.Release|Any CPU.ActiveCfg = Release|Any CPU |
||||
EndGlobalSection |
||||
EndGlobal |
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
Copyright (c) 2007 Andreas Schlapsi |
||||
|
||||
Permission is hereby granted, free of charge, to any person |
||||
obtaining a copy of this software and associated documentation |
||||
files (the "Software"), to deal in the Software without |
||||
restriction, including without limitation the rights to use, |
||||
copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
copies of the Software, and to permit persons to whom the |
||||
Software is furnished to do so, subject to the following |
||||
conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be |
||||
included in all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
||||
OTHER DEALINGS IN THE SOFTWARE. |
@ -0,0 +1,203 @@
@@ -0,0 +1,203 @@
|
||||
{\rtf1\adeflang44101\ansi\ansicpg1251\uc1\adeff0\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1049\deflangfe1049{\fonttbl{\f0\froman\fcharset204\fprq2{\*\panose 02020603050405020304}Times New Roman;} |
||||
{\f1\fswiss\fcharset204\fprq2{\*\panose 020b0604020202020204}Arial;}{\f2\fmodern\fcharset204\fprq1{\*\panose 02070309020205020404}Courier New;}{\f36\fswiss\fcharset204\fprq2{\*\panose 020b0604030504040204}Tahoma;} |
||||
{\f125\froman\fcharset0\fprq2 Times New Roman;}{\f123\froman\fcharset238\fprq2 Times New Roman CE;}{\f126\froman\fcharset161\fprq2 Times New Roman Greek;}{\f127\froman\fcharset162\fprq2 Times New Roman Tur;} |
||||
{\f128\froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f129\froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f130\froman\fcharset186\fprq2 Times New Roman Baltic;}{\f131\froman\fcharset163\fprq2 Times New Roman (Vietnamese);} |
||||
{\f135\fswiss\fcharset0\fprq2 Arial;}{\f133\fswiss\fcharset238\fprq2 Arial CE;}{\f136\fswiss\fcharset161\fprq2 Arial Greek;}{\f137\fswiss\fcharset162\fprq2 Arial Tur;}{\f138\fswiss\fcharset177\fprq2 Arial (Hebrew);} |
||||
{\f139\fswiss\fcharset178\fprq2 Arial (Arabic);}{\f140\fswiss\fcharset186\fprq2 Arial Baltic;}{\f141\fswiss\fcharset163\fprq2 Arial (Vietnamese);}{\f145\fmodern\fcharset0\fprq1 Courier New;}{\f143\fmodern\fcharset238\fprq1 Courier New CE;} |
||||
{\f146\fmodern\fcharset161\fprq1 Courier New Greek;}{\f147\fmodern\fcharset162\fprq1 Courier New Tur;}{\f148\fmodern\fcharset177\fprq1 Courier New (Hebrew);}{\f149\fmodern\fcharset178\fprq1 Courier New (Arabic);} |
||||
{\f150\fmodern\fcharset186\fprq1 Courier New Baltic;}{\f151\fmodern\fcharset163\fprq1 Courier New (Vietnamese);}{\f485\fswiss\fcharset0\fprq2 Tahoma;}{\f483\fswiss\fcharset238\fprq2 Tahoma CE;}{\f486\fswiss\fcharset161\fprq2 Tahoma Greek;} |
||||
{\f487\fswiss\fcharset162\fprq2 Tahoma Tur;}{\f488\fswiss\fcharset177\fprq2 Tahoma (Hebrew);}{\f489\fswiss\fcharset178\fprq2 Tahoma (Arabic);}{\f490\fswiss\fcharset186\fprq2 Tahoma Baltic;}{\f491\fswiss\fcharset163\fprq2 Tahoma (Vietnamese);} |
||||
{\f492\fswiss\fcharset222\fprq2 Tahoma (Thai);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255; |
||||
\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\stylesheet{ |
||||
\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fcs1 \af0\afs24\alang1025 \fcs0 \fs24\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 \snext0 Normal;}{ |
||||
\s1\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \fcs1 \ab\af0\afs32\alang1025 \fcs0 \b\f1\fs32\lang1049\langfe1049\kerning32\cgrid\langnp1049\langfenp1049 \sbasedon0 \snext0 \styrsid4662214 |
||||
heading 1;}{\s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0 \fcs1 \ab\ai\af0\afs28\alang1025 \fcs0 \b\i\f1\fs28\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 |
||||
\sbasedon0 \snext0 \styrsid4662214 heading 2;}{\*\cs10 \additive \ssemihidden Default Paragraph Font;}{\* |
||||
\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv |
||||
\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fcs1 \af0\afs20 \fcs0 \fs20\lang1024\langfe1024\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}{ |
||||
\s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 \sbasedon0 \snext15 Plain Text;}{ |
||||
\s16\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \cbpat9 \fcs1 \af0\afs20\alang1025 \fcs0 \f36\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 \sbasedon0 \snext16 \ssemihidden \styrsid3550821 Document Map;}{\* |
||||
\ts17\tsrowd\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 |
||||
\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fcs1 |
||||
\af0\afs20\alang44101 \fcs0 \fs20\lang1024\langfe1024\cgrid\langnp1024\langfenp1024 \sbasedon11 \snext17 \styrsid2687420 Table Grid;}}{\*\latentstyles\lsdstimax156\lsdlockeddef0}{\*\rsidtbl \rsid1901268\rsid2687420\rsid3550821\rsid4662214\rsid6780895 |
||||
\rsid8656177\rsid8991132\rsid9193294\rsid11103014\rsid11949287\rsid12545791\rsid12652468\rsid12850468}{\*\generator Microsoft Word 11.0.6359;}{\info{\title Parameters for running PartCover}{\author Oleg Loginov}{\operator Oleg Loginov} |
||||
{\creatim\yr2006\mo8\dy24\hr12\min56}{\revtim\yr2006\mo8\dy24\hr13\min9}{\version14}{\edmins9}{\nofpages3}{\nofwords655}{\nofchars3738}{\*\company STAR}{\nofcharsws4385}{\vern24703}}\paperw11906\paperh16838\margl1152\margr1152\margt1134\margb1134 |
||||
\deftab708\widowctrl\ftnbj\aenddoc\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\hyphcaps0\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1152\dgvorigin1134\dghshow1\dgvshow1 |
||||
\jexpand\viewkind1\viewscale100\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct |
||||
\asianbrkrule\rsidroot8991132\newtblstyruls\nogrowautofit \fet0\sectd \linex0\headery708\footery708\colsx708\endnhere\sectlinegrid360\sectdefaultcl\sectrsid8656177\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2 |
||||
\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6 |
||||
\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang |
||||
{\pntxtb (}{\pntxta )}}\pard\plain \s1\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0\pararsid4662214 \fcs1 \ab\af0\afs32\alang1025 \fcs0 |
||||
\b\f1\fs32\lang1049\langfe1049\kerning32\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 Parameters for running PartCover.exe (console version) |
||||
\par }\pard\plain \s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0\pararsid3550821 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 See section }{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid3550821 \'93}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 Run Arguments Examples}{ |
||||
\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid3550821 \'94}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 for examples |
||||
\par }\pard\plain \s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid4662214 \fcs1 \ab\ai\af0\afs28\alang1025 \fcs0 \b\i\f1\fs28\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 --target=<filename> |
||||
\par }\pard\plain \s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8656177 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 Argument specifies path to executable file to count coverage. <filename> may be either full path or relative path to file. |
||||
\par }\pard\plain \s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid11103014 \fcs1 \ab\ai\af0\afs28\alang1025 \fcs0 \b\i\f1\fs28\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 --target-work-dir=<path> |
||||
\par }\pard\plain \s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8656177 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 Argument specifies working directory to target process. By default, working directory will be working directory for PartCover.exe |
||||
\par }\pard\plain \s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid11103014 \fcs1 \ab\ai\af0\afs28\alang1025 \fcs0 \b\i\f1\fs28\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 --target-args=<arguments> |
||||
\par }\pard\plain \s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8656177 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 Argument specifies arguments for target process. If target argument contains spaces - quote <argument>. If you want specify quote (") in <arguments>, then precede it by slash (\\) |
||||
\par }\pard\plain \s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid11103014 \fcs1 \ab\ai\af0\afs28\alang1025 \fcs0 \b\i\f1\fs28\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 --include=<item>, --exclude=<item> |
||||
\par }\pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid9193294 \fcs1 \af0\afs24\alang1025 \fcs0 \fs24\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 These two specifies item to include or exclude from report. Item is in following format: |
||||
\par \tab [<assembly_regexp>]<class_regexp> |
||||
\par where <regexp> is simple regular expression, containing only asterix and characters to point item. For example: |
||||
\par [mscorlib]* |
||||
\par [System.*]System.IO.* |
||||
\par [System]System.Colle* |
||||
\par [Test]Test.*+InnerClass+SecondInners* |
||||
\par For additional examples, see section }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid9193294\charrsid1901268 \'93}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 Rules}{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid9193294\charrsid1901268 \'94}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 . |
||||
\par }\pard\plain \s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid11103014 \fcs1 \ab\ai\af0\afs28\alang1025 \fcs0 \b\i\f1\fs28\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 --settings=<file_name> |
||||
\par }\pard\plain \s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8656177 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 This specifies input settings in xml file. |
||||
\par }\pard\plain \s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid11103014 \fcs1 \ab\ai\af0\afs28\alang1025 \fcs0 \b\i\f1\fs28\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 --generate=<file_name> |
||||
\par }\pard\plain \s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8656177 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 This generates setting file using settings specified. By default, file generated will be processed via console output. |
||||
\par }\pard\plain \s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid11103014 \fcs1 \ab\ai\af0\afs28\alang1025 \fcs0 \b\i\f1\fs28\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 --output=<file_name> |
||||
\par }\pard\plain \s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8656177 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 This specifies output file for writing result xml. It will be placed in UTF-8 encoding. By default, output data will be processed via console output. |
||||
\par }\pard\plain \s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid11103014 \fcs1 \ab\ai\af0\afs28\alang1025 \fcs0 \b\i\f1\fs28\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 --log=<log_level> : |
||||
\par }\pard\plain \s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8656177 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 This specifies log level for driver. If <log_level> greater than 0, log file will be created in working directory for PartCover.exe |
||||
\par }\pard\plain \s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid11103014 \fcs1 \ab\ai\af0\afs28\alang1025 \fcs0 \b\i\f1\fs28\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 --version |
||||
\par }\pard\plain \s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8656177 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 This shows version of PartCover.exe console application |
||||
\par }\pard\plain \s1\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0\pararsid11103014 \fcs1 \ab\af0\afs32\alang1025 \fcs0 \b\f1\fs32\lang1049\langfe1049\kerning32\cgrid\langnp1049\langfenp1049 {\fcs1 |
||||
\af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 Rules |
||||
\par }\pard\plain \s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8656177 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 Common form for rules is |
||||
\par |
||||
\par \tab [<assembly_regexp>]<class_regexp> |
||||
\par |
||||
\par Regexp can contains digits, letters, asterisks and pluses. Asterisk means zero or more letters and digits in template, plus means inner state of classes. |
||||
\par For example, |
||||
\par |
||||
\par [mscorlib]* |
||||
\par [System.*]System.IO.* |
||||
\par [System]System.Colle* |
||||
\par [Test]Test.*+InnerClass+SecondInners* |
||||
\par |
||||
\par }\pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid9193294 \fcs1 \af0\afs24\alang1025 \fcs0 \fs24\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 Look at the table with examples}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132 |
||||
\par }\trowd \irow0\irowband0\ts17\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 |
||||
\trftsWidth3\trwWidth9828\trftsWidthB3\trftsWidthA3\trautofit1\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tbllkhdrrows\tbllklastrow\tbllkhdrcols\tbllklastcol \clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb |
||||
\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth3348\clshdrawnil \cellx4549\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth6480\clshdrawnil \cellx9720 |
||||
\pard\plain \s15\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\pararsid3550821\yts17 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 [mscorlib]*}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \cell }{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 |
||||
Describes all classes from assembly }{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'93}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 mscorlib}{\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420 \'94}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid2687420 \cell }\pard\plain \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \fcs1 \af0\afs24\alang1025 |
||||
\fcs0 \fs24\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \trowd \irow0\irowband0\ts17\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr |
||||
\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 \trftsWidth3\trwWidth9828\trftsWidthB3\trftsWidthA3\trautofit1\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tbllkhdrrows\tbllklastrow\tbllkhdrcols\tbllklastcol \clvertalt |
||||
\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth3348\clshdrawnil \cellx4549\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 |
||||
\cltxlrtb\clftsWidth3\clwWidth6480\clshdrawnil \cellx9720\row }\pard\plain \s15\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\pararsid3550821\yts17 \fcs1 \af0\afs20\alang1025 \fcs0 |
||||
\f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 [System.*]System.IO.*\cell Describes assemblies that start from }{\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420 \'93}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 System.}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'94}{\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 and classes within it which name starts from }{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'93}{\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 System.IO.}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'94}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 \cell }\pard\plain |
||||
\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \fcs1 \af0\afs24\alang1025 \fcs0 \fs24\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \trowd \irow1\irowband1 |
||||
\ts17\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 |
||||
\trftsWidth3\trwWidth9828\trftsWidthB3\trftsWidthA3\trautofit1\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tbllkhdrrows\tbllklastrow\tbllkhdrcols\tbllklastcol \clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb |
||||
\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth3348\clshdrawnil \cellx4549\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth6480\clshdrawnil \cellx9720 |
||||
\row }\pard\plain \s15\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\pararsid3550821\yts17 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 [System]System.Colle*\cell Describes classes from assembly }{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'93}{\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 System}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'94}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 which name start from }{\fcs1 |
||||
\af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'93}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 System.Colle}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'94}{\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 and have free ending part of name\cell }\pard\plain \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \fcs1 \af0\afs24\alang1025 \fcs0 |
||||
\fs24\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \trowd \irow2\irowband2\ts17\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr |
||||
\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 \trftsWidth3\trwWidth9828\trftsWidthB3\trftsWidthA3\trautofit1\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tbllkhdrrows\tbllklastrow\tbllkhdrcols\tbllklastcol \clvertalt |
||||
\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth3348\clshdrawnil \cellx4549\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 |
||||
\cltxlrtb\clftsWidth3\clwWidth6480\clshdrawnil \cellx9720\row }\pard\plain \s15\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\pararsid3550821\yts17 \fcs1 \af0\afs20\alang1025 \fcs0 |
||||
\f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 [Test]Test.*+InnerClass+SecondInners*\cell Describes classes from assembly }{\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420 \'93}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 Test}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'94}{\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 which name starts from }{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'93}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 SecondInners}{ |
||||
\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'94 }{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 and which are inner for class with name }{\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420 \'93}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 InnerClass}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'94}{\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 which are inner for class with name starting with }{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'93}{\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 Test.}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 \'94}{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420\charrsid2687420 \cell }\pard\plain |
||||
\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \fcs1 \af0\afs24\alang1025 \fcs0 \fs24\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid2687420 |
||||
\trowd \irow3\irowband3\lastrow \ts17\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 |
||||
\trftsWidth3\trwWidth9828\trftsWidthB3\trftsWidthA3\trautofit1\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tbllkhdrrows\tbllklastrow\tbllkhdrcols\tbllklastcol \clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb |
||||
\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth3348\clshdrawnil \cellx4549\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth6480\clshdrawnil \cellx9720 |
||||
\row }\pard\plain \s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8656177 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid2687420\charrsid3550821 }{\fcs1 \af2 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 |
||||
\par }\pard\plain \s1\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0\pararsid2687420 \fcs1 \ab\af0\afs32\alang1025 \fcs0 \b\f1\fs32\lang1049\langfe1049\kerning32\cgrid\langnp1049\langfenp1049 {\fcs1 |
||||
\af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 Run Arguments Examples |
||||
\par }\pard\plain \s15\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8656177 \fcs1 \af0\afs20\alang1025 \fcs0 \f2\fs20\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af2 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid3550821 |
||||
\par }\pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12545791 \fcs1 \af0\afs24\alang1025 \fcs0 \fs24\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 \fcs0 |
||||
\cf2\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 PartCover.exe --version |
||||
\par }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 |
||||
\par Shows version of PartCover.exe and exits |
||||
\par |
||||
\par }{\fcs1 \af0 \fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 PartCover.exe --target=../../bin/partcover.test.exe |
||||
\par }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 |
||||
\par Run target from path }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'93}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 ../../bin/partcover.test.exe}{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'94}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 and shows report on screen |
||||
\par |
||||
\par }{\fcs1 \af0 \fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 PartCover.exe --target=../../bin/partcover.test.exe --include=[Test]* |
||||
\par }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 |
||||
\par Run target from path }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'93}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 ../../bin/partcover.test.exe}{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'94}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 and shows report on screen. Reports will include only classes from assembly }{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'93}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 Test}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'94}{\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 |
||||
\par |
||||
\par }{\fcs1 \af0 \fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 PartCover.exe --target=../../bin/partcover.test.exe --include=[Test]* --exclude=[Test]DS* |
||||
\par }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 |
||||
\par Run target from path }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'93}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 ../../bin/partcover.test.exe}{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'94}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 and shows report on screen. Reports will include only classes from assembly }{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'93}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 Test}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'94}{\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 and all classes from assembly }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'93}{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 Test}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'94}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 |
||||
which name starts with }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'93}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 DS}{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid11949287\charrsid1901268 \'94}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 will be thrown out from report. So, you can exclude all dataset classes, generated by tools. |
||||
\par |
||||
\par }{\fcs1 \af0 \fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 PartCover.exe --target=../../bin/partcover.test.exe --include=[Test]* --include=[*.Data.*]* }{\fcs1 \af0 \fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid12545791 |
||||
|
||||
\par }{\fcs1 \af0 \fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 --exclude=[Test]DS* --exclude=[Test.Data*]pr_* |
||||
\par }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 |
||||
\par Run target from path }{\fcs1 \af0 \fcs0 \insrsid8991132\charrsid12545791 \'d3}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 ../../bin/partcover.test.exe}{\fcs1 \af0 \fcs0 \insrsid8991132\charrsid12545791 \'d4}{\fcs1 |
||||
\af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 and shows report on screen. Reports will include only classes from assembly }{\fcs1 \af0 \fcs0 \insrsid8991132\charrsid12545791 \'d3}{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 Test}{\fcs1 \af0 \fcs0 \insrsid8991132\charrsid12545791 \'d4}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 and assemblies which name contains }{\fcs1 \af0 |
||||
\fcs0 \insrsid8991132\charrsid12545791 \'d3}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 .Data.}{\fcs1 \af0 \fcs0 \insrsid8991132\charrsid12545791 \'d4}{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 . All classes from assembly }{\fcs1 \af0 \fcs0 \insrsid8991132\charrsid12545791 \'d3}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 Test}{\fcs1 \af0 \fcs0 |
||||
\insrsid8991132\charrsid12545791 \'d4}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 which name starts with }{\fcs1 \af0 \fcs0 \insrsid8991132\charrsid12545791 \'d3}{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 DS}{\fcs1 \af0 \fcs0 \insrsid8991132\charrsid12545791 \'d4}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 will be thrown out from report. |
||||
All classes which name starts from }{\fcs1 \af0 \fcs0 \insrsid8991132\charrsid12545791 \'d3}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 pr_}{\fcs1 \af0 \fcs0 \insrsid8991132\charrsid12545791 \'d4}{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 from assemblies which name start with }{\fcs1 \af0 \fcs0 \insrsid8991132\charrsid12545791 \'d3}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 Test.Data}{ |
||||
\fcs1 \af0 \fcs0 \insrsid8991132\charrsid12545791 \'d4}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132\charrsid1901268 will be also thrown out.}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid8991132 |
||||
\par }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid1901268 |
||||
\par }\pard\plain \s1\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0\pararsid1901268 \fcs1 \ab\af0\afs32\alang1025 \fcs0 \b\f1\fs32\lang1049\langfe1049\kerning32\cgrid\langnp1049\langfenp1049 {\fcs1 |
||||
\af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid1901268 XSLT transforms |
||||
\par }\pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid1901268 \fcs1 \af0\afs24\alang1025 \fcs0 \fs24\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid1901268 You can use xslt from folder \'93xslt\'94 to transform report}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid1901268\charrsid1901268 }{\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid1901268 xml in other readable xml.}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid12850468 If you want to look at the report in browser \endash add the following string in report xml header a |
||||
nd your browser will perform xslt-transformation:}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid1901268 |
||||
\par }{\fcs1 \af0 \fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid12850468\charrsid12850468 <?xml-stylesheet type="text/xsl" href="}{\fcs1 \af0 \fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid12850468 <path to assembly}{\fcs1 \af0 \fcs0 |
||||
\cf2\lang1033\langfe1049\langnp1033\insrsid12850468\charrsid12850468 .report.xslt}{\fcs1 \af0 \fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid12850468 >}{\fcs1 \af0 \fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid12850468\charrsid12850468 /}{\fcs1 \af0 |
||||
\fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid12850468 assembly}{\fcs1 \af0 \fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid12850468\charrsid12850468 .report.xslt"?>}{\fcs1 \af0 \fcs0 \cf2\lang1033\langfe1049\langnp1033\insrsid12850468 |
||||
\par }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid12850468 |
||||
\par }\pard\plain \s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid1901268 \fcs1 \ab\ai\af0\afs28\alang1025 \fcs0 \b\i\f1\fs28\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid1901268\charrsid1901268 assembly.report.xslt}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid1901268 |
||||
\par }\pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid1901268 \fcs1 \af0\afs24\alang1025 \fcs0 \fs24\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid12652468 Shows report by assemblies}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid1901268 |
||||
\par }\pard\plain \s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid1901268 \fcs1 \ab\ai\af0\afs28\alang1025 \fcs0 \b\i\f1\fs28\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 |
||||
\fcs0 \lang1033\langfe1049\langnp1033\insrsid1901268\charrsid1901268 class.report.xslt |
||||
\par }\pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid1901268 \fcs1 \af0\afs24\alang1025 \fcs0 \fs24\lang1049\langfe1049\cgrid\langnp1049\langfenp1049 {\fcs1 \af0 \fcs0 |
||||
\lang1033\langfe1049\langnp1033\insrsid1901268 Shows report by class}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid12652468 es}{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid1901268\charrsid1901268 |
||||
\par }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid1901268 |
||||
\par }{\fcs1 \af0 \fcs0 \lang1033\langfe1049\langnp1033\insrsid12850468\charrsid1901268 |
||||
\par }} |
@ -0,0 +1,4 @@
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0"?> |
||||
<configuration> |
||||
<startup> |
||||
</startup></configuration> |
@ -0,0 +1,14 @@
@@ -0,0 +1,14 @@
|
||||
<!-- |
||||
Converts PartCover code coverage output report to an NCover report. |
||||
--> |
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> |
||||
<xsl:output version="1.0" encoding="utf-8" omit-xml-declaration="no"/> |
||||
|
||||
<xsl:template match="/"> |
||||
<xsl:element name="coverage"> |
||||
<xsl:attribute name="name"> |
||||
<xsl:value-of select="" |
||||
</xsl:attribute> |
||||
</xsl:element> |
||||
</xsl:template> |
||||
</xsl:stylesheet> |
@ -0,0 +1,54 @@
@@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxml="urn:schemas-microsoft-com:xslt"> |
||||
<xsl:output method="html" indent="no"/> |
||||
|
||||
<xsl:template match="/"> |
||||
|
||||
<xsl:variable name="cov0style" select="'background:#E79090;text-align:right;'"/> |
||||
<xsl:variable name="cov20style" select="'background:#D79797;text-align:right;'"/> |
||||
<xsl:variable name="cov40style" select="'background:#D7A0A0;text-align:right;'"/> |
||||
<xsl:variable name="cov60style" select="'background:#C7A7A7;text-align:right;'"/> |
||||
<xsl:variable name="cov80style" select="'background:#C0B0B0;text-align:right;'"/> |
||||
<xsl:variable name="cov100style" select="'background:#D7D7D7;text-align:right;'"/> |
||||
|
||||
<table style="border-collapse: collapse;"> |
||||
<tr style="font-weight:bold; background:whitesmoke;"><td colspan="2">Coverage by assembly</td></tr> |
||||
|
||||
<xsl:variable name="unique-asms" select="/PartCoverReport/type[not(@asm=following::type/@asm)]"/> |
||||
<xsl:for-each select="$unique-asms"> |
||||
<xsl:variable name="current-asm" select="./@asm"/> |
||||
<tr> |
||||
|
||||
<xsl:element name="td"> |
||||
<xsl:attribute name="style">background:ghostwhite; padding: 5px 30px 5px 5px;</xsl:attribute> |
||||
<xsl:value-of select="$current-asm"/> |
||||
</xsl:element> |
||||
|
||||
<xsl:variable name="codeSize" select="sum(/PartCoverReport/type[@asm=$current-asm]/method/code/pt/@len)+0"/> |
||||
<xsl:variable name="coveredCodeSize" select="sum(/PartCoverReport/type[@asm=$current-asm]/method/code/pt[@visit>0]/@len)+0"/> |
||||
|
||||
<xsl:element name="td"> |
||||
<xsl:if test="$codeSize=0"> |
||||
<xsl:attribute name="style"><xsl:value-of select="$cov0style"/></xsl:attribute> |
||||
0% |
||||
</xsl:if> |
||||
|
||||
<xsl:if test="$codeSize > 0"> |
||||
<xsl:variable name="coverage" select="ceiling(100 * $coveredCodeSize div $codeSize)"/> |
||||
|
||||
<xsl:if test="$coverage >= 0 and $coverage < 20"><xsl:attribute name="style"><xsl:value-of select="$cov20style"/></xsl:attribute></xsl:if> |
||||
<xsl:if test="$coverage >= 20 and $coverage < 40"><xsl:attribute name="style"><xsl:value-of select="$cov40style"/></xsl:attribute></xsl:if> |
||||
<xsl:if test="$coverage >= 40 and $coverage < 60"><xsl:attribute name="style"><xsl:value-of select="$cov60style"/></xsl:attribute></xsl:if> |
||||
<xsl:if test="$coverage >= 60 and $coverage < 80"><xsl:attribute name="style"><xsl:value-of select="$cov80style"/></xsl:attribute></xsl:if> |
||||
<xsl:if test="$coverage >= 80"><xsl:attribute name="style"><xsl:value-of select="$cov100style"/></xsl:attribute></xsl:if> |
||||
<xsl:value-of select="$coverage"/>% |
||||
</xsl:if> |
||||
|
||||
</xsl:element> |
||||
</tr> |
||||
</xsl:for-each> |
||||
</table> |
||||
|
||||
</xsl:template> |
||||
|
||||
</xsl:stylesheet> |
@ -0,0 +1,52 @@
@@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxml="urn:schemas-microsoft-com:xslt"> |
||||
<xsl:output method="html" indent="no"/> |
||||
|
||||
<xsl:template match="/"> |
||||
|
||||
<xsl:variable name="cov0style" select="'background:#FF4040;text-align:right;'"/> |
||||
<xsl:variable name="cov20style" select="'background:#F06060;text-align:right;'"/> |
||||
<xsl:variable name="cov40style" select="'background:#E78080;text-align:right;'"/> |
||||
<xsl:variable name="cov60style" select="'background:#E0A0A0;text-align:right;'"/> |
||||
<xsl:variable name="cov80style" select="'background:#D7B0B0;text-align:right;'"/> |
||||
<xsl:variable name="cov100style" select="'background:#E0E0E0;text-align:right;'"/> |
||||
|
||||
<table style="border-collapse: collapse;"> |
||||
<tr style="font-weight:bold; background:whitesmoke;"><td colspan="2">Coverage by class</td></tr> |
||||
|
||||
<xsl:for-each select="/PartCoverReport/type"> |
||||
<tr> |
||||
|
||||
<xsl:element name="td"> |
||||
<xsl:attribute name="style">background:ghostwhite; padding: 5px 30px 5px 5px;</xsl:attribute> |
||||
<xsl:value-of select="@name"/> |
||||
</xsl:element> |
||||
|
||||
<xsl:variable name="codeSize" select="sum(./method/code/pt/@len)+0"/> |
||||
<xsl:variable name="coveredCodeSize" select="sum(./method/code/pt[@visit>0]/@len)+0"/> |
||||
|
||||
<xsl:element name="td"> |
||||
<xsl:if test="$codeSize=0"> |
||||
<xsl:attribute name="style"><xsl:value-of select="$cov0style"/></xsl:attribute> |
||||
0% |
||||
</xsl:if> |
||||
|
||||
<xsl:if test="$codeSize > 0"> |
||||
<xsl:variable name="coverage" select="ceiling(100 * $coveredCodeSize div $codeSize)"/> |
||||
|
||||
<xsl:if test="$coverage >= 0 and $coverage < 20"><xsl:attribute name="style"><xsl:value-of select="$cov20style"/></xsl:attribute></xsl:if> |
||||
<xsl:if test="$coverage >= 20 and $coverage < 40"><xsl:attribute name="style"><xsl:value-of select="$cov40style"/></xsl:attribute></xsl:if> |
||||
<xsl:if test="$coverage >= 40 and $coverage < 60"><xsl:attribute name="style"><xsl:value-of select="$cov60style"/></xsl:attribute></xsl:if> |
||||
<xsl:if test="$coverage >= 60 and $coverage < 80"><xsl:attribute name="style"><xsl:value-of select="$cov80style"/></xsl:attribute></xsl:if> |
||||
<xsl:if test="$coverage >= 80"><xsl:attribute name="style"><xsl:value-of select="$cov100style"/></xsl:attribute></xsl:if> |
||||
<xsl:value-of select="$coverage"/>% |
||||
</xsl:if> |
||||
|
||||
</xsl:element> |
||||
</tr> |
||||
</xsl:for-each> |
||||
</table> |
||||
|
||||
</xsl:template> |
||||
|
||||
</xsl:stylesheet> |
After Width: | Height: | Size: 318 B |
After Width: | Height: | Size: 318 B |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 152 KiB |
After Width: | Height: | Size: 766 B |
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,94 @@
@@ -0,0 +1,94 @@
|
||||
Common Public License Version 1.0 |
||||
|
||||
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. |
||||
|
||||
|
||||
1. DEFINITIONS |
||||
|
||||
"Contribution" means: |
||||
|
||||
a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and |
||||
|
||||
b) in the case of each subsequent Contributor: |
||||
|
||||
i) changes to the Program, and |
||||
|
||||
ii) additions to the Program; |
||||
|
||||
where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. |
||||
|
||||
"Contributor" means any person or entity that distributes the Program. |
||||
|
||||
"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. |
||||
|
||||
"Program" means the Contributions distributed in accordance with this Agreement. |
||||
|
||||
"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. |
||||
|
||||
|
||||
2. GRANT OF RIGHTS |
||||
|
||||
a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. |
||||
|
||||
b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. |
||||
|
||||
c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. |
||||
|
||||
d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. |
||||
|
||||
|
||||
3. REQUIREMENTS |
||||
|
||||
A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: |
||||
|
||||
a) it complies with the terms and conditions of this Agreement; and |
||||
|
||||
b) its license agreement: |
||||
|
||||
i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; |
||||
|
||||
ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; |
||||
|
||||
iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and |
||||
|
||||
iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. |
||||
|
||||
When the Program is made available in source code form: |
||||
|
||||
a) it must be made available under this Agreement; and |
||||
|
||||
b) a copy of this Agreement must be included with each copy of the Program. |
||||
|
||||
Contributors may not remove or alter any copyright notices contained within the Program. |
||||
|
||||
Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. |
||||
|
||||
|
||||
4. COMMERCIAL DISTRIBUTION |
||||
|
||||
Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. |
||||
|
||||
For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. |
||||
|
||||
|
||||
5. NO WARRANTY |
||||
|
||||
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. |
||||
|
||||
|
||||
6. DISCLAIMER OF LIABILITY |
||||
|
||||
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. |
||||
|
||||
|
||||
7. GENERAL |
||||
|
||||
If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. |
||||
|
||||
If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. |
||||
|
||||
All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. |
||||
|
||||
Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. |
||||
|
||||
This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. |
@ -0,0 +1,9 @@
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<!-- |
||||
Copyright (c) Microsoft Corporation. All rights reserved. |
||||
--> |
||||
<configuration> |
||||
<startup> |
||||
<supportedRuntime version="v2.0.50727" /> |
||||
</startup> |
||||
</configuration> |
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<!-- |
||||
Copyright (c) Microsoft Corporation. All rights reserved. |
||||
--> |
||||
<configuration> |
||||
<appSettings> |
||||
<add key="extensions" value="WixDifxAppExtension;WixDirectXExtension;WixFirewallExtension;WixGamingExtension;WixIIsExtension;WixNetFxExtension;WixSqlExtension;WixUIExtension;WixUtilExtension;WixVSExtension" /> |
||||
</appSettings> |
||||
<startup> |
||||
<supportedRuntime version="v2.0.50727" /> |
||||
</startup> |
||||
</configuration> |
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<!-- |
||||
Copyright (c) Microsoft Corporation. All rights reserved. |
||||
--> |
||||
<configuration> |
||||
<appSettings> |
||||
<add key="extensions" value="WixIIsExtension;WixUtilExtension;WixVSExtension"/> |
||||
</appSettings> |
||||
<startup> |
||||
<supportedRuntime version="v2.0.50727" /> |
||||
</startup> |
||||
</configuration> |
@ -0,0 +1,9 @@
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<!-- |
||||
Copyright (c) Microsoft Corporation. All rights reserved. |
||||
--> |
||||
<configuration> |
||||
<startup> |
||||
<supportedRuntime version="v2.0.50727" /> |
||||
</startup> |
||||
</configuration> |