Skip to content

Commit cf3168f

Browse files
committed
Adjust
1 parent cdca8aa commit cf3168f

File tree

4 files changed

+78
-0
lines changed

4 files changed

+78
-0
lines changed

ExtensionTesting.sln

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Microsoft.VisualStudio.Exte
6969
EndProject
7070
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.VisualStudio.Extensibility.Testing.Xunit.v3", "src\Microsoft.VisualStudio.Extensibility.Testing.Xunit.v3\Microsoft.VisualStudio.Extensibility.Testing.Xunit.v3.csproj", "{076FCA31-75AF-4DE5-BD54-A3D057D8F2BD}"
7171
EndProject
72+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.VisualStudio.Extensibility.Testing.Xunit.v3.IntegrationTests", "src\Microsoft.VisualStudio.Extensibility.Testing.Xunit.v3.IntegrationTests\Microsoft.VisualStudio.Extensibility.Testing.Xunit.v3.IntegrationTests.csproj", "{073D4E58-1EA3-463B-BE40-F636B3F98593}"
73+
EndProject
7274
Global
7375
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7476
Debug|Any CPU = Debug|Any CPU
@@ -135,6 +137,10 @@ Global
135137
{076FCA31-75AF-4DE5-BD54-A3D057D8F2BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
136138
{076FCA31-75AF-4DE5-BD54-A3D057D8F2BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
137139
{076FCA31-75AF-4DE5-BD54-A3D057D8F2BD}.Release|Any CPU.Build.0 = Release|Any CPU
140+
{073D4E58-1EA3-463B-BE40-F636B3F98593}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
141+
{073D4E58-1EA3-463B-BE40-F636B3F98593}.Debug|Any CPU.Build.0 = Debug|Any CPU
142+
{073D4E58-1EA3-463B-BE40-F636B3F98593}.Release|Any CPU.ActiveCfg = Release|Any CPU
143+
{073D4E58-1EA3-463B-BE40-F636B3F98593}.Release|Any CPU.Build.0 = Release|Any CPU
138144
EndGlobalSection
139145
GlobalSection(SolutionProperties) = preSolution
140146
HideSolutionNode = FALSE
@@ -159,11 +165,13 @@ Global
159165
{25E61E07-E449-4ABB-A197-BD5C8EE3347F} = {D2869BF7-27E8-42B9-BF23-8790C0CE08C2}
160166
{DA9797F0-F158-42AB-BE2B-922588756941} = {D2869BF7-27E8-42B9-BF23-8790C0CE08C2}
161167
{076FCA31-75AF-4DE5-BD54-A3D057D8F2BD} = {1F46A366-159A-47E7-86C7-D1282D7F711B}
168+
{073D4E58-1EA3-463B-BE40-F636B3F98593} = {7A983C88-A0B8-4A6C-8837-E45ADD6C01EE}
162169
EndGlobalSection
163170
GlobalSection(ExtensibilityGlobals) = postSolution
164171
SolutionGuid = {BEAADCC8-C5EB-46B6-8AA8-0242304BE240}
165172
EndGlobalSection
166173
GlobalSection(SharedMSBuildProjectFiles) = preSolution
174+
src\Microsoft.VisualStudio.Extensibility.Testing.Xunit.IntegrationTests.Shared\Microsoft.VisualStudio.Extensibility.Testing.Xunit.IntegrationTests.Shared.projitems*{073d4e58-1ea3-463b-be40-f636b3f98593}*SharedItemsImports = 5
167175
src\Microsoft.VisualStudio.Extensibility.Testing.Xunit.Shared\Microsoft.VisualStudio.Extensibility.Testing.Xunit.Shared.projitems*{076fca31-75af-4de5-bd54-a3d057d8f2bd}*SharedItemsImports = 5
168176
src\Microsoft.VisualStudio.Extensibility.Testing.Xunit.IntegrationTests.Shared\Microsoft.VisualStudio.Extensibility.Testing.Xunit.IntegrationTests.Shared.projitems*{346081a2-a088-4486-94b3-b586bd6fd888}*SharedItemsImports = 5
169177
src\Microsoft.VisualStudio.VsixInstaller.Shared\Microsoft.VisualStudio.VsixInstaller.Shared.projitems*{4232a7ba-a7b7-4c65-b7a1-17fb5cded299}*SharedItemsImports = 5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project Sdk="Microsoft.NET.Sdk">
3+
4+
<PropertyGroup>
5+
<TargetFramework>net472</TargetFramework>
6+
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
7+
<OutputType>Exe</OutputType>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<Reference Include="PresentationFramework" />
12+
<Reference Include="System.Runtime.Remoting" />
13+
<Reference Include="WindowsBase" />
14+
</ItemGroup>
15+
16+
<ItemGroup>
17+
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.0.0-previews-3-31605-261" PrivateAssets="all" />
18+
<!--
19+
A Newtonsoft.Json package reference with insecure defaults is inherited, but not needed by this project.
20+
Override the reference to a secure version, but exclude it from the build and packaging.
21+
-->
22+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" ExcludeAssets="all" PrivateAssets="all" />
23+
<PackageReference Include="Roslyn.Diagnostics.Analyzers" Version="3.3.3" PrivateAssets="all" />
24+
<PackageReference Include="xunit.v3" Version="1.1.0" />
25+
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2" PrivateAssets="all" />
26+
</ItemGroup>
27+
28+
<ItemGroup>
29+
<ProjectReference Include="..\Microsoft.VisualStudio.Extensibility.Testing.Xunit.v3\Microsoft.VisualStudio.Extensibility.Testing.Xunit.v3.csproj" />
30+
<ProjectReference Include="..\Microsoft.VisualStudio.Extensibility.Testing.SourceGenerator\Microsoft.VisualStudio.Extensibility.Testing.SourceGenerator.csproj"
31+
OutputItemType="Analyzer"
32+
ReferenceOutputAssembly="false"
33+
SetTargetFramework="TargetFramework=netstandard2.0"
34+
SkipGetTargetFrameworkProperties="true" />
35+
</ItemGroup>
36+
37+
<ItemGroup>
38+
<AssemblyAttribute Include="Xunit.TestFrameworkAttribute">
39+
<_Parameter1>Xunit.Harness.IdeTestFramework</_Parameter1>
40+
<_Parameter1_TypeName>System.Type</_Parameter1_TypeName>
41+
</AssemblyAttribute>
42+
</ItemGroup>
43+
44+
<ItemGroup>
45+
<None Update="xunit.runner.json">
46+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
47+
</None>
48+
</ItemGroup>
49+
50+
<Import Project="..\Microsoft.VisualStudio.Extensibility.Testing.Xunit.IntegrationTests.Shared\Microsoft.VisualStudio.Extensibility.Testing.Xunit.IntegrationTests.Shared.projitems" Label="Shared" />
51+
52+
</Project>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT License. See LICENSE in the project root for more information.
3+
4+
using System;
5+
using System.Runtime.InteropServices;
6+
7+
// General Information about an assembly is controlled through the following
8+
// set of attributes. Change these attribute values to modify the information
9+
// associated with an assembly.
10+
[assembly: CLSCompliant(false)]
11+
12+
// Setting ComVisible to false makes the types in this assembly not visible
13+
// to COM components. If you need to access a type in this assembly from
14+
// COM, set the ComVisible attribute to true on that type.
15+
[assembly: ComVisible(false)]
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"shadowCopy": false
3+
}

0 commit comments

Comments
 (0)