Organize workspace: Frontend, Backend, and Tests in one repo
This commit is contained in:
5
.nuget/packages/microsoft.codecoverage/17.12.0/.nupkg.metadata
vendored
Normal file
5
.nuget/packages/microsoft.codecoverage/17.12.0/.nupkg.metadata
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": 2,
|
||||
"contentHash": "4svMznBd5JM21JIG2xZKGNanAHNXplxf/kQDFfLHXQ3OnpJkayRK/TjacFjA+EYmoyuNXHo/sOETEfcYtAzIrA==",
|
||||
"source": "https://api.nuget.org/v3/index.json"
|
||||
}
|
||||
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/.signature.p7s
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/.signature.p7s
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/Icon.png
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/Icon.png
vendored
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 2.1 KiB |
39
.nuget/packages/microsoft.codecoverage/17.12.0/ThirdPartyNotices.txt
vendored
Executable file
39
.nuget/packages/microsoft.codecoverage/17.12.0/ThirdPartyNotices.txt
vendored
Executable file
@@ -0,0 +1,39 @@
|
||||
CodeCoverage
|
||||
|
||||
THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
|
||||
Do Not Translate or Localize
|
||||
|
||||
This software incorporates components from the projects listed below. The original copyright notices
|
||||
and the licenses under which Microsoft received such components are set forth below and are provided for
|
||||
informational purposes only. Microsoft reserves all rights not expressly granted herein, whether by
|
||||
implication, estoppel or otherwise.
|
||||
|
||||
1. Mono.Cecil version 0.11.3 (https://github.com/jbevain/cecil)
|
||||
|
||||
|
||||
|
||||
%% Mono.Cecil NOTICES AND INFORMATION BEGIN HERE
|
||||
=========================================
|
||||
Copyright (c) 2008 - 2015 Jb Evain
|
||||
Copyright (c) 2008 - 2011 Novell, Inc.
|
||||
|
||||
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.
|
||||
=========================================
|
||||
END OF Mono.Cecil NOTICES AND INFORMATION
|
||||
149
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/CodeCoverage.config
vendored
Executable file
149
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/CodeCoverage.config
vendored
Executable file
@@ -0,0 +1,149 @@
|
||||
<CodeCoverage>
|
||||
|
||||
<!--
|
||||
The communication timeout between the logger and its clients in miliseconds (minimum value is 10 seconds).
|
||||
-->
|
||||
<CommunicationTimeout>60000</CommunicationTimeout>
|
||||
|
||||
<!--
|
||||
Determines if data should be collected from child processes. If this value is false, data will only be collected from the process created by the logger.
|
||||
This should be set to true for Silverlight collection because most web browsers create multiple processes.
|
||||
-->
|
||||
<CollectFromChildProcesses>true</CollectFromChildProcesses>
|
||||
|
||||
<!--
|
||||
Determines if managed instrumentation is verifiable. If false, managed instrumentation will not be verifiable, but data collection will perform better.
|
||||
Unverifiable instrumentation will cause an exception if the code does not have the unverifiable code permission.
|
||||
This value must be true for Silverlight and other "less-than-full trust" applications.
|
||||
Only set this value to false if you are observing collection-related performance problems on a full-trust application.
|
||||
-->
|
||||
<UseVerifiableInstrumentation>true</UseVerifiableInstrumentation>
|
||||
|
||||
<!--
|
||||
Determines if low integrity processes (such as "protected mode" IE8) can connect to the logger.
|
||||
Only enable this setting if you trust the code running in the low integrity process.
|
||||
-->
|
||||
<AllowLowIntegrityProcesses>true</AllowLowIntegrityProcesses>
|
||||
|
||||
<!--
|
||||
Determines if auto-generated modules should be included for code coverage. Code for these modules is generated on the fly by the compiler.
|
||||
and the modules are tagged with a compilergenerated assembly attribute. Modules generated by ASP.NET for web pages(.aspx) come under this category.
|
||||
-->
|
||||
<ExcludeCompilerAutoGeneratedModules>true</ExcludeCompilerAutoGeneratedModules>
|
||||
|
||||
<!--
|
||||
The list of additional users allowed to connect to the logger. The logger process owner will always be an allowed user.
|
||||
-->
|
||||
<AllowedUsers />
|
||||
|
||||
<!--
|
||||
Additional paths to search for symbol files. Symbols must be found for modules to be instrumented.
|
||||
-->
|
||||
<SymbolSearchPaths />
|
||||
|
||||
<!--
|
||||
About include/exclude lists:
|
||||
Empty "Include" clauses imply all; empty "Exclude" clauses imply none.
|
||||
Each element in the list is a regular expression (ECMAScript syntax).
|
||||
An item must first match at least one entry in the include list to be included.
|
||||
Included items must then not match any entries in the exclude list to remain included.
|
||||
It is considered an error to exclude all items from instrumentation as no data would be collected.
|
||||
-->
|
||||
|
||||
<!--
|
||||
The module include/exclude list by the full path from where the module loaded.
|
||||
Entries in this list are case-insensitive.
|
||||
-->
|
||||
<ModulePaths />
|
||||
|
||||
<!--
|
||||
The company name include/exclude list. This is matched against the company name in a module's version information.
|
||||
Entries in this list are case-insensitive.
|
||||
-->
|
||||
<CompanyNames>
|
||||
<Exclude>
|
||||
<!-- Exclude all modules with "microsoft" in the company name. -->
|
||||
<CompanyName>.*microsoft.*</CompanyName>
|
||||
</Exclude>
|
||||
</CompanyNames>
|
||||
|
||||
<!--
|
||||
The module public key token include/exclude list.
|
||||
For native modules, the public key token is derived from the signing certificate's thumbprint.
|
||||
Entries in this list are case-insensitive.
|
||||
-->
|
||||
<PublicKeyTokens>
|
||||
<Exclude>
|
||||
<!-- Microsoft public key token -->
|
||||
<PublicKeyToken>^B77A5C561934E089$</PublicKeyToken>
|
||||
<PublicKeyToken>^B03F5F7F11D50A3A$</PublicKeyToken>
|
||||
<PublicKeyToken>^31BF3856AD364E35$</PublicKeyToken>
|
||||
<PublicKeyToken>^89845DCD8080CC91$</PublicKeyToken>
|
||||
<PublicKeyToken>^71E9BCE111E9429C$</PublicKeyToken>
|
||||
<PublicKeyToken>^8F50407C4E9E73B6$</PublicKeyToken>
|
||||
<PublicKeyToken>^E361AF139669C375$</PublicKeyToken>
|
||||
</Exclude>
|
||||
</PublicKeyTokens>
|
||||
|
||||
<!--
|
||||
The source file path include/exclude list. This is matched against source information in a .pdb.
|
||||
Entries in this list are case-insensitive.
|
||||
-->
|
||||
<Sources>
|
||||
<Exclude>
|
||||
<!-- Exclude files from ATL/MFC -->
|
||||
<Source>.*\\atlmfc\\.*</Source>
|
||||
<!-- Exclude files from the CRT -->
|
||||
<Source>.*\\vctools\\.*</Source>
|
||||
<Source>.*\\VC\\Tools\\.*</Source>
|
||||
<!-- Exclude files from Microsoft's SDKs -->
|
||||
<Source>.*\\public\\sdk\\.*</Source>
|
||||
<Source>.*\\externalapis\\.*</Source>
|
||||
<Source>.*\\microsoft sdks\\.*</Source>
|
||||
<!-- Exclude files from VC++'s include directory -->
|
||||
<Source>.*\\vc\\include\\.*</Source>
|
||||
<Source>.*\\msclr\\.*</Source>
|
||||
<Source>.*\\ucrt\\.*</Source>
|
||||
<Source>.*\(compiler internal\)$</Source>
|
||||
</Exclude>
|
||||
</Sources>
|
||||
|
||||
<!--
|
||||
The attributes include/exclude list. This is matched against a managed method's attributes.
|
||||
The attributes are also checked on the method's type and the type's outter type, if the type is a nested type.
|
||||
Entries in this list are case-sensitive attribute type names.
|
||||
-->
|
||||
<Attributes>
|
||||
<Exclude>
|
||||
<Attribute>^System.Diagnostics.DebuggerHiddenAttribute$</Attribute>
|
||||
<Attribute>^System.Diagnostics.DebuggerNonUserCodeAttribute$</Attribute>
|
||||
<Attribute>^System.Runtime.CompilerServices.CompilerGeneratedAttribute$</Attribute>
|
||||
<Attribute>^System.CodeDom.Compiler.GeneratedCodeAttribute$</Attribute>
|
||||
<Attribute>^System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute$</Attribute>
|
||||
</Exclude>
|
||||
</Attributes>
|
||||
|
||||
<!--
|
||||
The function name include/exclude list.
|
||||
Entries in this list are case-sensitive.
|
||||
-->
|
||||
<Functions>
|
||||
<Exclude>
|
||||
<!-- Exclude symbols in the C++ std namespace -->
|
||||
<Function>^std::.*</Function>
|
||||
<!-- Exclude symbols in the ATL namespace -->
|
||||
<Function>^ATL::.*</Function>
|
||||
<!-- Exclude TEST_METHOD macro -->
|
||||
<Function>.*::__GetTestMethodInfo.*</Function>
|
||||
<!-- Exclude compiler generated entry point -->
|
||||
<Function>.*__CxxPureMSILEntry.*</Function>
|
||||
<!-- Exclude symbols in the code coverage namespace -->
|
||||
<Function>^Microsoft::VisualStudio::CppCodeCoverageFramework::.*</Function>
|
||||
<!-- Exclude symbols in the unit test namespace -->
|
||||
<Function>^Microsoft::VisualStudio::CppUnitTestFramework::.*</Function>
|
||||
<!-- Exclude functions related to CPPUnitTest macros -->
|
||||
<Function>.*::YOU_CAN_ONLY_DESIGNATE_ONE_.*</Function>
|
||||
</Exclude>
|
||||
</Functions>
|
||||
|
||||
</CodeCoverage>
|
||||
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/CodeCoverage.exe
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/CodeCoverage.exe
vendored
Executable file
Binary file not shown.
10
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/Cov_x86.config
vendored
Executable file
10
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/Cov_x86.config
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<InstrumentationEngineConfiguration>
|
||||
<InstrumentationMethod>
|
||||
<Name>Vanguard Instrumentation Method</Name>
|
||||
<Description>Instrumentation method to support Code Coverage</Description>
|
||||
<Module>covrun32.dll</Module>
|
||||
<ClassGuid>{2A1F2A34-8192-44AC-A9D8-4FCC03DCBAA8}</ClassGuid>
|
||||
<Priority>99</Priority>
|
||||
</InstrumentationMethod>
|
||||
</InstrumentationEngineConfiguration>
|
||||
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe
vendored
Executable file
Binary file not shown.
10
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/amd64/Cov_x64.config
vendored
Executable file
10
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/amd64/Cov_x64.config
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<InstrumentationEngineConfiguration>
|
||||
<InstrumentationMethod>
|
||||
<Name>Vanguard Instrumentation Method</Name>
|
||||
<Description>Instrumentation method to support Code Coverage</Description>
|
||||
<Module>covrun64.dll</Module>
|
||||
<ClassGuid>{2A1F2A34-8192-44AC-A9D8-4FCC03DCBAA8}</ClassGuid>
|
||||
<Priority>99</Priority>
|
||||
</InstrumentationMethod>
|
||||
</InstrumentationEngineConfiguration>
|
||||
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/amd64/covrun64.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/amd64/covrun64.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/amd64/msdia140.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/amd64/msdia140.dll
vendored
Executable file
Binary file not shown.
10
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/arm64/Cov_arm64.config
vendored
Executable file
10
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/arm64/Cov_arm64.config
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<InstrumentationEngineConfiguration>
|
||||
<InstrumentationMethod>
|
||||
<Name>Vanguard Instrumentation Method</Name>
|
||||
<Description>Instrumentation method to support Code Coverage</Description>
|
||||
<Module>covrunarm64.dll</Module>
|
||||
<ClassGuid>{2A1F2A34-8192-44AC-A9D8-4FCC03DCBAA8}</ClassGuid>
|
||||
<Priority>99</Priority>
|
||||
</InstrumentationMethod>
|
||||
</InstrumentationEngineConfiguration>
|
||||
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/arm64/msdia140.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/arm64/msdia140.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/codecoveragemessages.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/codecoveragemessages.dll
vendored
Executable file
Binary file not shown.
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/covrun32.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/covrun32.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/msdia140.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/CodeCoverage/msdia140.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.CodeCoverage.Core.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.CodeCoverage.Core.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll
vendored
Executable file
Binary file not shown.
17
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.CodeCoverage.props
vendored
Executable file
17
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.CodeCoverage.props
vendored
Executable file
@@ -0,0 +1,17 @@
|
||||
<!--
|
||||
***********************************************************************************************
|
||||
Microsoft.CodeCoverage.props
|
||||
|
||||
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
|
||||
created a backup copy. Incorrect changes to this file will make it
|
||||
impossible to load or build your projects from the command-line or the IDE.
|
||||
|
||||
Copyright (c) .NET Foundation. All rights reserved.
|
||||
***********************************************************************************************
|
||||
-->
|
||||
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<TraceDataCollectorDirectoryPath>$(MSBuildThisFileDirectory)</TraceDataCollectorDirectoryPath>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
60
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.CodeCoverage.targets
vendored
Executable file
60
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.CodeCoverage.targets
vendored
Executable file
@@ -0,0 +1,60 @@
|
||||
<!--
|
||||
***********************************************************************************************
|
||||
Microsoft.CodeCoverage.targets
|
||||
|
||||
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
|
||||
created a backup copy. Incorrect changes to this file will make it
|
||||
impossible to load or build your test projects from the command-line or the IDE.
|
||||
|
||||
Copyright (c) Microsoft. All rights reserved.
|
||||
***********************************************************************************************
|
||||
-->
|
||||
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<!-- This target required to enable /collect:"Code Coverage" in "dotnet publish" scenario with "dotnet vstest".
|
||||
E.g: Release pipelines where user/project nuget cache not available on current machine. -->
|
||||
<Target Name="CopyTraceDataCollectorArtifacts" AfterTargets="ComputeFilesToPublish">
|
||||
|
||||
<ItemGroup>
|
||||
<TraceDataCollectorArtifacts Include="$(MSBuildThisFileDirectory)\**\*.*" />
|
||||
</ItemGroup>
|
||||
|
||||
<Copy SourceFiles="@(TraceDataCollectorArtifacts)" DestinationFolder="$(PublishDir)%(RecursiveDir)" />
|
||||
|
||||
</Target>
|
||||
|
||||
<PropertyGroup Condition="'$(NETCoreSdkVersion)' != '' and '$(DisableMsCoverageReferencedPathMaps)' != 'true'">
|
||||
<_msCoverageSdkNETCoreSdkVersion>$(NETCoreSdkVersion)</_msCoverageSdkNETCoreSdkVersion>
|
||||
<_msCoverageSdkNETCoreSdkVersion Condition="$(_msCoverageSdkNETCoreSdkVersion.Contains('-'))">$(_msCoverageSdkNETCoreSdkVersion.Split('-')[0])</_msCoverageSdkNETCoreSdkVersion>
|
||||
<_msCoverageSdkMinVersionWithDependencyTarget>6.0.100</_msCoverageSdkMinVersionWithDependencyTarget>
|
||||
<_msCoverageSourceRootTargetName>MsCoverageGetPathMap</_msCoverageSourceRootTargetName>
|
||||
<_msCoverageSourceRootTargetName Condition="'$([System.Version]::Parse($(_msCoverageSdkNETCoreSdkVersion)).CompareTo($([System.Version]::Parse($(_msCoverageSdkMinVersionWithDependencyTarget)))))' >= '0' ">InitializeSourceRootMappedPaths</_msCoverageSourceRootTargetName>
|
||||
</PropertyGroup>
|
||||
|
||||
<!-- This target required to store deterministic sources mapping.
|
||||
It is modified version of https://github.com/coverlet-coverage/coverlet/blob/d1ca364b7dbff38abce0457d94c4ce1b7e3a4cd9/src/coverlet.collector/build/coverlet.collector.targets#L35 -->
|
||||
<Target Condition="'$(NETCoreSdkVersion)' != '' and '$(DisableMsCoverageReferencedPathMaps)' != 'true'" Name="MsCoverageReferencedPathMaps" BeforeTargets="CoreCompile" DependsOnTargets="ResolveProjectReferences" >
|
||||
<MSBuild Projects="@(AnnotatedProjects->'%(FullPath)')"
|
||||
Targets="$(_msCoverageSourceRootTargetName)"
|
||||
Properties="TargetFramework=%(AnnotatedProjects.NearestTargetFramework)"
|
||||
SkipNonexistentTargets="true">
|
||||
<Output TaskParameter="TargetOutputs"
|
||||
ItemName="_msCoverageLocalTopLevelSourceRoot" />
|
||||
</MSBuild>
|
||||
<ItemGroup>
|
||||
<_msCoverageByProject Include="@(_msCoverageLocalTopLevelSourceRoot->'%(MSBuildSourceProjectFile)')" OriginalPath="%(Identity)" />
|
||||
<_msCoverageMapping Include="@(_msCoverageByProject->'%(Identity)|%(OriginalPath)=%(MappedPath)')" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<_msCoverageSourceRootMappingFilePath>$([MSBuild]::EnsureTrailingSlash('$(OutputPath)')).msCoverageSourceRootsMapping_$(AssemblyName)</_msCoverageSourceRootMappingFilePath>
|
||||
</PropertyGroup>
|
||||
<WriteLinesToFile File="$(_msCoverageSourceRootMappingFilePath)" Lines="@(_msCoverageMapping)"
|
||||
Overwrite="true" Encoding="Unicode"
|
||||
Condition="'@(_msCoverageMapping)'!=''"
|
||||
WriteOnlyWhenDifferent="true" />
|
||||
<ItemGroup>
|
||||
<FileWrites Include="$(_msCoverageSourceRootMappingFilePath)" Condition="'@(_msCoverageMapping)'!=''" />
|
||||
</ItemGroup>
|
||||
</Target>
|
||||
</Project>
|
||||
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.DiaSymReader.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.DiaSymReader.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Mono.Cecil.Pdb.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Mono.Cecil.Pdb.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Mono.Cecil.Rocks.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Mono.Cecil.Rocks.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Mono.Cecil.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/Mono.Cecil.dll
vendored
Executable file
Binary file not shown.
39
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/ThirdPartyNotices.txt
vendored
Executable file
39
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/ThirdPartyNotices.txt
vendored
Executable file
@@ -0,0 +1,39 @@
|
||||
CodeCoverage
|
||||
|
||||
THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
|
||||
Do Not Translate or Localize
|
||||
|
||||
This software incorporates components from the projects listed below. The original copyright notices
|
||||
and the licenses under which Microsoft received such components are set forth below and are provided for
|
||||
informational purposes only. Microsoft reserves all rights not expressly granted herein, whether by
|
||||
implication, estoppel or otherwise.
|
||||
|
||||
1. Mono.Cecil version 0.11.3 (https://github.com/jbevain/cecil)
|
||||
|
||||
|
||||
|
||||
%% Mono.Cecil NOTICES AND INFORMATION BEGIN HERE
|
||||
=========================================
|
||||
Copyright (c) 2008 - 2015 Jb Evain
|
||||
Copyright (c) 2008 - 2011 Novell, Inc.
|
||||
|
||||
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.
|
||||
=========================================
|
||||
END OF Mono.Cecil NOTICES AND INFORMATION
|
||||
10
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/alpine/x64/Cov_x64.config
vendored
Executable file
10
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/alpine/x64/Cov_x64.config
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<InstrumentationEngineConfiguration>
|
||||
<InstrumentationMethod>
|
||||
<Name>Code Coverage Instrumentation Method</Name>
|
||||
<Description>Instrumentation method to support Microsoft Code Coverage</Description>
|
||||
<Module>libCoverageInstrumentationMethod.so</Module>
|
||||
<ClassGuid>{F02C3E96-F6FD-4552-9544-9F06BE6E5A0B}</ClassGuid>
|
||||
<Priority>11</Priority>
|
||||
</InstrumentationMethod>
|
||||
</InstrumentationEngineConfiguration>
|
||||
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/alpine/x64/libCoverageInstrumentationMethod.so
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/alpine/x64/libCoverageInstrumentationMethod.so
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/alpine/x64/libInstrumentationEngine.so
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/alpine/x64/libInstrumentationEngine.so
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/arm64/MicrosoftInstrumentationEngine_arm64.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/arm64/MicrosoftInstrumentationEngine_arm64.dll
vendored
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/macos/x64/Cov_x64.config
vendored
Executable file
10
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/macos/x64/Cov_x64.config
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<InstrumentationEngineConfiguration>
|
||||
<InstrumentationMethod>
|
||||
<Name>Code Coverage Instrumentation Method</Name>
|
||||
<Description>Instrumentation method to support Microsoft Code Coverage</Description>
|
||||
<Module>libCoverageInstrumentationMethod.dylib</Module>
|
||||
<ClassGuid>{F02C3E96-F6FD-4552-9544-9F06BE6E5A0B}</ClassGuid>
|
||||
<Priority>11</Priority>
|
||||
</InstrumentationMethod>
|
||||
</InstrumentationEngineConfiguration>
|
||||
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/macos/x64/libCoverageInstrumentationMethod.dylib
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/macos/x64/libCoverageInstrumentationMethod.dylib
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/macos/x64/libInstrumentationEngine.dylib
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/macos/x64/libInstrumentationEngine.dylib
vendored
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/ubuntu/x64/Cov_x64.config
vendored
Executable file
10
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/ubuntu/x64/Cov_x64.config
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<InstrumentationEngineConfiguration>
|
||||
<InstrumentationMethod>
|
||||
<Name>Code Coverage Instrumentation Method</Name>
|
||||
<Description>Instrumentation method to support Microsoft Code Coverage</Description>
|
||||
<Module>libCoverageInstrumentationMethod.so</Module>
|
||||
<ClassGuid>{F02C3E96-F6FD-4552-9544-9F06BE6E5A0B}</ClassGuid>
|
||||
<Priority>11</Priority>
|
||||
</InstrumentationMethod>
|
||||
</InstrumentationEngineConfiguration>
|
||||
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/ubuntu/x64/libCoverageInstrumentationMethod.so
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/ubuntu/x64/libCoverageInstrumentationMethod.so
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/ubuntu/x64/libInstrumentationEngine.so
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/ubuntu/x64/libInstrumentationEngine.so
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/x64/MicrosoftInstrumentationEngine_x64.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/x64/MicrosoftInstrumentationEngine_x64.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/x86/MicrosoftInstrumentationEngine_x86.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/build/netstandard2.0/x86/MicrosoftInstrumentationEngine_x86.dll
vendored
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll
vendored
Executable file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll
vendored
Executable file
Binary file not shown.
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/microsoft.codecoverage.17.12.0.nupkg
vendored
Normal file
BIN
.nuget/packages/microsoft.codecoverage/17.12.0/microsoft.codecoverage.17.12.0.nupkg
vendored
Normal file
Binary file not shown.
1
.nuget/packages/microsoft.codecoverage/17.12.0/microsoft.codecoverage.17.12.0.nupkg.sha512
vendored
Normal file
1
.nuget/packages/microsoft.codecoverage/17.12.0/microsoft.codecoverage.17.12.0.nupkg.sha512
vendored
Normal file
@@ -0,0 +1 @@
|
||||
POBqg788rrLApvncy8rvtyJ3ynsBdU0/SGUXD+vPqyRDM/aUJbPZWx01qalGJRK1GcArSku8QDd9AVMa0TkCkA==
|
||||
22
.nuget/packages/microsoft.codecoverage/17.12.0/microsoft.codecoverage.nuspec
vendored
Executable file
22
.nuget/packages/microsoft.codecoverage/17.12.0/microsoft.codecoverage.nuspec
vendored
Executable file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>Microsoft.CodeCoverage</id>
|
||||
<version>17.12.0</version>
|
||||
<authors>Microsoft</authors>
|
||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||
<license type="expression">MIT</license>
|
||||
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
|
||||
<icon>Icon.png</icon>
|
||||
<projectUrl>https://github.com/microsoft/vstest</projectUrl>
|
||||
<description>Microsoft.CodeCoverage package brings infra for collecting code coverage from vstest.console.exe and "dotnet test".</description>
|
||||
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
|
||||
<tags>vstest visual-studio unittest testplatform mstest microsoft test testing codecoverage code-coverage</tags>
|
||||
<serviceable>true</serviceable>
|
||||
<repository type="git" url="https://github.com/microsoft/vstest" commit="bc9161306b23641b0364b8f93d546da4d48da1eb" />
|
||||
<dependencies>
|
||||
<group targetFramework=".NETFramework4.6.2" />
|
||||
<group targetFramework=".NETCoreApp3.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
</package>
|
||||
Reference in New Issue
Block a user