Skip to content

Commit fe5c4ce

Browse files
committed
updated the build configurations in the solution
1 parent bbd8cc9 commit fe5c4ce

File tree

5 files changed

+7
-61
lines changed

5 files changed

+7
-61
lines changed

.appveyor/appveyor.test.ps1

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
. .\.appveyor\appveyor.before-tests.ps1;
21

3-
& "${ENV:APPVEYOR_BUILD_FOLDER}\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe" -register:user -target:`"${ENV:APPVEYOR_BUILD_FOLDER}\packages\xunit.runner.console.2.1.0\tools\xunit.console.x86.exe`" -targetargs:`"${ENV:APPVEYOR_BUILD_FOLDER}\Managed.Adb.Tests\bin\${ENV:PLATFORM}\${ENV:CONFIGURATION}\Managed.Adb.Tests.dll /noshadow /nologo /notrait category=IntegrationTest`" -filter:`"+[Managed.Adb]* -[Managed.Adb]Managed.Adb.Properties.*`" -excludebyattribute:*.ExcludeFromCodeCoverage* -hideskipped:All -output:${ENV:APPVEYOR_BUILD_FOLDER}\managed.adb.coverage.xml
4-
codecov -f `"${ENV:APPVEYOR_BUILD_FOLDER}\managed.adb.coverage.xml`" -X gcov;
2+
& "${ENV:APPVEYOR_BUILD_FOLDER}\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe" -register:user -target:`"${ENV:APPVEYOR_BUILD_FOLDER}\packages\xunit.runner.console.2.1.0\tools\xunit.console.x86.exe`" -targetargs:`"${ENV:APPVEYOR_BUILD_FOLDER}\Managed.Adb.Tests\bin\x86\Debug\Managed.Adb.Tests.dll /noshadow /nologo /notrait category=IntegrationTest`" -filter:`"+[Managed.Adb]* -[Managed.Adb]Managed.Adb.Properties.*`" -excludebyattribute:*.ExcludeFromCodeCoverage* -hideskipped:All -output:${ENV:APPVEYOR_BUILD_FOLDER}\managed.adb.coverage.xml
53

6-
. .\.appveyor\appveyor.after-tests.ps1;
4+
codecov -f `"${ENV:APPVEYOR_BUILD_FOLDER}\managed.adb.coverage.xml`" -X gcov;

.build/BuildAll.msbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<CreateItem Include="$(MSBuildProjectDirectory)\..\Managed.Adb.Tests\*.csproj">
1717
<Output ItemName="TestProjects" TaskParameter="Include"/>
1818
</CreateItem>
19-
<MSBuild Projects="@(TestProjects)" Properties="PublishMode=Nuget;Platform=x86;">
19+
<MSBuild Projects="@(TestProjects)" Properties="PublishMode=Nuget;Platform=x86;Configuration=Debug;">
2020
<Output ItemName="OutputFiles" TaskParameter="TargetOutputs"/>
2121
</MSBuild>
2222
</Target>

Managed.Adb.Tests/Managed.Adb.Tests.csproj

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -26,45 +26,26 @@
2626
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
2727
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
2828
<ErrorReport>prompt</ErrorReport>
29-
<Optimize>true</Optimize>
29+
<Optimize>false</Optimize>
3030
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
31-
<PlatformTarget>x86</PlatformTarget>
3231
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
3332
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
3433
</PropertyGroup>
3534
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
36-
<DebugSymbols>true</DebugSymbols>
3735
<DefineConstants>TRACE;DEBUG;PLATFORMX64</DefineConstants>
38-
<DebugType>full</DebugType>
39-
<PlatformTarget>x64</PlatformTarget>
40-
<ErrorReport>prompt</ErrorReport>
41-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
36+
<PlatformTarget>x64</PlatformTarget>
4237
</PropertyGroup>
4338
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
44-
<DebugSymbols>true</DebugSymbols>
4539
<DefineConstants>TRACE;DEBUG;PLATFORMX64</DefineConstants>
46-
<Optimize>true</Optimize>
47-
<DebugType>full</DebugType>
48-
<PlatformTarget>x64</PlatformTarget>
49-
<ErrorReport>prompt</ErrorReport>
50-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
40+
<PlatformTarget>x64</PlatformTarget>
5141
</PropertyGroup>
5242
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
53-
<DebugSymbols>true</DebugSymbols>
5443
<DefineConstants>TRACE;DEBUG;PLATFORMX86</DefineConstants>
55-
<DebugType>full</DebugType>
5644
<PlatformTarget>x86</PlatformTarget>
57-
<ErrorReport>prompt</ErrorReport>
58-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
5945
</PropertyGroup>
6046
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
61-
<DebugSymbols>true</DebugSymbols>
6247
<DefineConstants>TRACE;DEBUG;PLATFORMX86</DefineConstants>
63-
<Optimize>true</Optimize>
64-
<DebugType>full</DebugType>
6548
<PlatformTarget>x86</PlatformTarget>
66-
<ErrorReport>prompt</ErrorReport>
67-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
6849
</PropertyGroup>
6950
<ItemGroup>
7051
<Reference Include="Camalot.Common, Version=1.0.5937.17275, Culture=neutral, PublicKeyToken=02434577b8ec3216, processorArchitecture=MSIL">

Managed.AndroidDebugBridge.sln

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -71,72 +71,38 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Managed.Adb.Tests", "Manage
7171
EndProject
7272
Global
7373
GlobalSection(SolutionConfigurationPlatforms) = preSolution
74-
Debug|Any CPU = Debug|Any CPU
75-
Debug|Mixed Platforms = Debug|Mixed Platforms
7674
Debug|x64 = Debug|x64
7775
Debug|x86 = Debug|x86
78-
Release|Any CPU = Release|Any CPU
79-
Release|Mixed Platforms = Release|Mixed Platforms
8076
Release|x64 = Release|x64
8177
Release|x86 = Release|x86
8278
EndGlobalSection
8379
GlobalSection(ProjectConfigurationPlatforms) = postSolution
84-
{65473257-E70F-410B-9269-D0C0F771EA87}.Debug|Any CPU.ActiveCfg = Debug|x86
85-
{65473257-E70F-410B-9269-D0C0F771EA87}.Debug|Any CPU.Build.0 = Debug|x86
86-
{65473257-E70F-410B-9269-D0C0F771EA87}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
87-
{65473257-E70F-410B-9269-D0C0F771EA87}.Debug|Mixed Platforms.Build.0 = Debug|x86
8880
{65473257-E70F-410B-9269-D0C0F771EA87}.Debug|x64.ActiveCfg = Debug|x64
8981
{65473257-E70F-410B-9269-D0C0F771EA87}.Debug|x64.Build.0 = Debug|x64
9082
{65473257-E70F-410B-9269-D0C0F771EA87}.Debug|x86.ActiveCfg = Debug|x86
9183
{65473257-E70F-410B-9269-D0C0F771EA87}.Debug|x86.Build.0 = Debug|x86
92-
{65473257-E70F-410B-9269-D0C0F771EA87}.Release|Any CPU.ActiveCfg = Release|x86
93-
{65473257-E70F-410B-9269-D0C0F771EA87}.Release|Any CPU.Build.0 = Release|x86
94-
{65473257-E70F-410B-9269-D0C0F771EA87}.Release|Mixed Platforms.ActiveCfg = Release|x86
95-
{65473257-E70F-410B-9269-D0C0F771EA87}.Release|Mixed Platforms.Build.0 = Release|x86
9684
{65473257-E70F-410B-9269-D0C0F771EA87}.Release|x64.ActiveCfg = Release|x64
9785
{65473257-E70F-410B-9269-D0C0F771EA87}.Release|x64.Build.0 = Release|x64
9886
{65473257-E70F-410B-9269-D0C0F771EA87}.Release|x86.ActiveCfg = Release|x86
9987
{65473257-E70F-410B-9269-D0C0F771EA87}.Release|x86.Build.0 = Release|x86
100-
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Debug|Any CPU.ActiveCfg = Debug|x86
101-
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Debug|Any CPU.Build.0 = Debug|x86
102-
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
103-
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Debug|Mixed Platforms.Build.0 = Debug|x86
10488
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Debug|x64.ActiveCfg = Debug|x64
10589
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Debug|x64.Build.0 = Debug|x64
10690
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Debug|x86.ActiveCfg = Debug|x86
10791
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Debug|x86.Build.0 = Debug|x86
108-
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Release|Any CPU.ActiveCfg = Release|x86
109-
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Release|Any CPU.Build.0 = Release|x86
110-
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Release|Mixed Platforms.ActiveCfg = Release|x86
111-
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Release|Mixed Platforms.Build.0 = Release|x86
11292
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Release|x64.ActiveCfg = Release|x64
11393
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Release|x64.Build.0 = Release|x64
11494
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Release|x86.ActiveCfg = Release|x86
11595
{F9A436F4-0606-4326-8607-9EA4D9E6AF18}.Release|x86.Build.0 = Release|x86
116-
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
117-
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
118-
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
119-
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
12096
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Debug|x64.ActiveCfg = Debug|Any CPU
12197
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Debug|x86.ActiveCfg = Debug|Any CPU
12298
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Debug|x86.Build.0 = Debug|Any CPU
123-
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
124-
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Release|Any CPU.Build.0 = Release|Any CPU
125-
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
126-
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Release|Mixed Platforms.Build.0 = Release|Any CPU
12799
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Release|x64.ActiveCfg = Release|Any CPU
128100
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Release|x86.ActiveCfg = Release|Any CPU
129101
{A3BA455F-4829-4412-9ACC-DEFBC1BC84FC}.Release|x86.Build.0 = Release|Any CPU
130-
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Debug|Any CPU.ActiveCfg = Debug|x86
131-
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
132-
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Debug|Mixed Platforms.Build.0 = Debug|x86
133102
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Debug|x64.ActiveCfg = Debug|x64
134103
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Debug|x64.Build.0 = Debug|x64
135104
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Debug|x86.ActiveCfg = Debug|x86
136105
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Debug|x86.Build.0 = Debug|x86
137-
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Release|Any CPU.ActiveCfg = Release|x86
138-
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Release|Mixed Platforms.ActiveCfg = Release|x86
139-
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Release|Mixed Platforms.Build.0 = Release|x86
140106
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Release|x64.ActiveCfg = Debug|x64
141107
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Release|x64.Build.0 = Debug|x64
142108
{2E3DF5C2-8A38-4A03-86D7-8D463C917E47}.Release|x86.ActiveCfg = Debug|x86

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[![MadBee](http://i.imgur.com/UxO8Lrj.png)](http://madb.bit13.com/)
22

33
[![Build status](https://ci.appveyor.com/api/projects/status/dn8mjauo4i5ghwlg?svg=true)](https://ci.appveyor.com/project/camalot/madb)
4+
[![Code Coverage by CodeCov](https://codecov.io/github/camalot/madb/coverage.svg)](https://codecov.io/github/camalot/madb)
45

56
This is a Managed port of the Android Debug Bridge to allow communication from .NET applications to Android devices.
67
This wraps the same methods that the ddms uses to directly communicate with ADB.

0 commit comments

Comments
 (0)