Skip to content

Commit 366533f

Browse files
First set of files for CSharp Integration
1 parent 0780f28 commit 366533f

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

CodeCoveProject.sln

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.31101.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyUnitTests", "MyUnitTests\MyUnitTests.csproj", "{C96E6E0B-F789-4EEA-916D-6296164A0507}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTestTargetProject", "UnitTestTargetProject\UnitTestTargetProject.csproj", "{0232DEEE-0DD3-484B-9075-AFA40779981E}"
9+
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{2BACFF44-39E4-4C3E-93E8-E1CCBEB1C9B1}"
11+
ProjectSection(SolutionItems) = preProject
12+
.nuget\packages.config = .nuget\packages.config
13+
EndProjectSection
14+
EndProject
15+
Global
16+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
17+
Debug|Any CPU = Debug|Any CPU
18+
Release|Any CPU = Release|Any CPU
19+
EndGlobalSection
20+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21+
{C96E6E0B-F789-4EEA-916D-6296164A0507}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22+
{C96E6E0B-F789-4EEA-916D-6296164A0507}.Debug|Any CPU.Build.0 = Debug|Any CPU
23+
{C96E6E0B-F789-4EEA-916D-6296164A0507}.Release|Any CPU.ActiveCfg = Release|Any CPU
24+
{C96E6E0B-F789-4EEA-916D-6296164A0507}.Release|Any CPU.Build.0 = Release|Any CPU
25+
{0232DEEE-0DD3-484B-9075-AFA40779981E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26+
{0232DEEE-0DD3-484B-9075-AFA40779981E}.Debug|Any CPU.Build.0 = Debug|Any CPU
27+
{0232DEEE-0DD3-484B-9075-AFA40779981E}.Release|Any CPU.ActiveCfg = Release|Any CPU
28+
{0232DEEE-0DD3-484B-9075-AFA40779981E}.Release|Any CPU.Build.0 = Release|Any CPU
29+
EndGlobalSection
30+
GlobalSection(SolutionProperties) = preSolution
31+
HideSolutionNode = FALSE
32+
EndGlobalSection
33+
EndGlobal

RunTests.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.\packages\OpenCover.4.6.166\tools\OpenCover.Console.exe -register:user -target:"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\MSTest.exe" -targetargs:"/noresults /noisolation /testcontainer:"".\MyUnitTests\bin\Debug\MyUnitTests.dll" -excludebyattribute:*.ExcludeFromCodeCoverage* -hideskipped:All -output:.\MyProject_coverage.xml
2+
pause

appveyor.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 1.0.{build}
2+
build:
3+
verbosity: minimal
4+
after_test:
5+
- packages\OpenCover.4.6.166\tools\OpenCover.Console.exe -register:user -target:"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\MSTest.exe" -targetargs:"/noresults /noisolation /testcontainer:"".\MyUnitTests\bin\Debug\MyUnitTests.dll" -excludebyattribute:*.ExcludeFromCodeCoverage* -hideskipped:All -output:.\MyProject_coverage.xml
6+
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
7+
- pip install codecov
8+
- codecov -f "MyProject_coverage.xml"

0 commit comments

Comments
 (0)