Skip to content

Commit ca33352

Browse files
authored
Merge pull request #245 from mschnelte/mscodecoverage
Mscodecoverage
2 parents e8cd069 + ccb04f2 commit ca33352

File tree

97 files changed

+7626
-1070
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+7626
-1070
lines changed

FineCodeCoverage/FineCodeCoverage.csproj

+25-13
Original file line numberDiff line numberDiff line change
@@ -81,31 +81,40 @@
8181
<Link>Resources\reportparts.xml</Link>
8282
<IncludeInVSIX>true</IncludeInVSIX>
8383
</Content>
84-
<Content Include="ZippedTools\coverlet.collector.3.0.3.zip">
84+
<VSCTCompile Include="..\Shared Files\OutputToolWindowPackage.vsct">
85+
<Link>OutputToolWindowPackage.vsct</Link>
86+
<ResourceName>Menus.ctmenu</ResourceName>
87+
</VSCTCompile>
88+
<Content Include="..\Shared Files\Resources\ClearUICommand.png">
89+
<Link>Resources\ClearUICommand.png</Link>
8590
<IncludeInVSIX>true</IncludeInVSIX>
8691
</Content>
87-
<Content Include="ZippedTools\coverlet.console.3.0.3.zip">
92+
<Content Include="..\Shared Files\Resources\OutputToolWindowCommand.png">
93+
<Link>Resources\OutputToolWindowCommand.png</Link>
8894
<IncludeInVSIX>true</IncludeInVSIX>
8995
</Content>
90-
<Content Include="ZippedTools\microsoft.testplatform.16.9.1.zip">
96+
<Content Include="..\Shared Files\ZippedTools\coverlet.collector.3.0.3.zip">
97+
<Link>ZippedTools\coverlet.collector.3.0.3.zip</Link>
9198
<IncludeInVSIX>true</IncludeInVSIX>
9299
</Content>
93-
<Content Include="ZippedTools\openCover.4.7.922.zip">
100+
<Content Include="..\Shared Files\ZippedTools\coverlet.console.3.0.3.zip">
101+
<Link>ZippedTools\coverlet.console.3.0.3.zip</Link>
94102
<IncludeInVSIX>true</IncludeInVSIX>
95103
</Content>
96-
<Content Include="ZippedTools\reportGenerator.4.7.1.zip">
104+
<Content Include="..\Shared Files\ZippedTools\microsoft.codecoverage.17.1.0.zip">
105+
<Link>ZippedTools\microsoft.codecoverage.17.1.0.zip</Link>
97106
<IncludeInVSIX>true</IncludeInVSIX>
98107
</Content>
99-
<VSCTCompile Include="..\Shared Files\OutputToolWindowPackage.vsct">
100-
<Link>OutputToolWindowPackage.vsct</Link>
101-
<ResourceName>Menus.ctmenu</ResourceName>
102-
</VSCTCompile>
103-
<Content Include="..\Shared Files\Resources\ClearUICommand.png">
104-
<Link>Resources\ClearUICommand.png</Link>
108+
<Content Include="..\Shared Files\ZippedTools\microsoft.testplatform.16.9.1.zip">
109+
<Link>ZippedTools\microsoft.testplatform.16.9.1.zip</Link>
105110
<IncludeInVSIX>true</IncludeInVSIX>
106111
</Content>
107-
<Content Include="..\Shared Files\Resources\OutputToolWindowCommand.png">
108-
<Link>Resources\OutputToolWindowCommand.png</Link>
112+
<Content Include="..\Shared Files\ZippedTools\openCover.4.7.922.zip">
113+
<Link>ZippedTools\openCover.4.7.922.zip</Link>
114+
<IncludeInVSIX>true</IncludeInVSIX>
115+
</Content>
116+
<Content Include="..\Shared Files\ZippedTools\reportGenerator.4.7.1.zip">
117+
<Link>ZippedTools\reportGenerator.4.7.1.zip</Link>
109118
<IncludeInVSIX>true</IncludeInVSIX>
110119
</Content>
111120
<!--
@@ -143,6 +152,9 @@
143152
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
144153
<PrivateAssets>all</PrivateAssets>
145154
</PackageReference>
155+
<PackageReference Include="Newtonsoft.Json">
156+
<Version>13.0.1</Version>
157+
</PackageReference>
146158
<PackageReference Include="ReflectObject">
147159
<Version>1.0.0</Version>
148160
</PackageReference>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

FineCodeCoverage2022/FineCodeCoverage2022.csproj

+7
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@
9797
<Link>Resources\LICENSE</Link>
9898
<IncludeInVSIX>true</IncludeInVSIX>
9999
</Content>
100+
<Content Include="..\Shared Files\ZippedTools\microsoft.codecoverage.17.1.0.zip">
101+
<Link>ZippedTools\microsoft.codecoverage.17.1.0.zip</Link>
102+
<IncludeInVSIX>true</IncludeInVSIX>
103+
</Content>
100104
<None Include="source.extension.vsixmanifest">
101105
<SubType>Designer</SubType>
102106
</None>
@@ -141,6 +145,9 @@
141145
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
142146
<PrivateAssets>all</PrivateAssets>
143147
</PackageReference>
148+
<PackageReference Include="Newtonsoft.Json">
149+
<Version>13.0.1</Version>
150+
</PackageReference>
144151
<PackageReference Include="ReflectObject">
145152
<Version>1.0.0</Version>
146153
</PackageReference>

0 commit comments

Comments
 (0)