提交 882842ee 编写于 作者: S Srivatsn Narayanan

Convert the samples projects to use globs.

上级 62011bca
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<TargetFramework>net46</TargetFramework>
......@@ -34,9 +34,7 @@
<ScrubbedSamplePath>CSharp\APISampleUnitTests</ScrubbedSamplePath>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{CFF49CC1-85B5-49F7-B14B-A6EBF2592DD2}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>APISampleUnitTestsCS</RootNamespace>
<AssemblyName>APISampleUnitTestsCS.UnitTests</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
......@@ -47,13 +45,5 @@
<PackageReference Include="xunit" Version="$(xunitVersion)" />
<PackageReference Include="xunit.runner.console" Version="$(xunitrunnerconsoleVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Include="Compilations.cs" />
<Compile Include="FAQ.cs" />
<Compile Include="Parsing.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SymbolsAndSemantics.cs" />
<Compile Include="SyntaxTrees.cs" />
</ItemGroup>
<Import Project="..\..\..\..\build\Targets\Imports.targets" />
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProductVersion>8.0.30703</ProductVersion>
<ProjectGuid>{E5603AB0-C831-4044-8E44-3CA853B6A152}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>CSharpAnalyzers.Test</RootNamespace>
<AssemblyName>CSharpAnalyzers.Tests</AssemblyName>
<TargetFramework>net46</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
<ItemGroup>
<Compile Include="Tests\CompilationStartedAnalyzerWithCompilationWideAnalysisUnitTests.cs" />
<Compile Include="Tests\CompilationStartedAnalyzerUnitTests.cs" />
<Compile Include="Tests\CodeBlockStartedAnalyzerUnitTests.cs" />
<Compile Include="Tests\CodeBlockAnalyzerUnitTests.cs" />
<Compile Include="Tests\SemanticModelAnalyzerUnitTests.cs" />
<Compile Include="Tests\CompilationAnalyzerUnitTests.cs" />
<Compile Include="Tests\SyntaxTreeAnalyzerUnitTests.cs" />
<Compile Include="Tests\SyntaxNodeAnalyzerUnitTests.cs" />
<Compile Include="Verifiers\DiagnosticVerifier.cs" />
<Compile Include="Helpers\DiagnosticResult.cs" />
<Compile Include="Helpers\DiagnosticVerifier.Helper.cs" />
<Compile Include="Tests\SymbolAnalyzerUnitTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CSharpAnalyzers\CSharpAnalyzers.csproj">
<Project>{409C5A1C-D4DE-43C4-86E1-F598C60B794B}</Project>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{D4277F22-5942-4DE7-9E42-B33168118D34}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>CSharpAnalyzers</RootNamespace>
<AssemblyName>CSharpAnalyzers.Vsix</AssemblyName>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
<TargetFramework>net46</TargetFramework>
<ImportVSSDKTargets>True</ImportVSSDKTargets>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<UseRoslynAnalyzers>false</UseRoslynAnalyzers>
</PropertyGroup>
......@@ -9,7 +9,6 @@
<NonShipping>true</NonShipping>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{E1D96749-5BF9-4B04-81A1-9D4B3B1F6BF4}</ProjectGuid>
<OutputType>Exe</OutputType>
<AssemblyName>ConsoleClassifier</AssemblyName>
<TargetFramework>net46</TargetFramework>
......@@ -54,9 +53,5 @@
<Reference Include="System.Core" />
<PackageReference Include="System.Composition" Version="$(SystemCompositionVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Range.cs" />
</ItemGroup>
<Import Project="..\..\..\..\build\Targets\Imports.targets" />
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<ImportVSSDKTargets>true</ImportVSSDKTargets>
......@@ -27,11 +27,7 @@
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{AF90D220-D21A-4A85-8CB7-E33057AC5AE3}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ConvertToAutoPropertyCS</RootNamespace>
<AssemblyName>ConvertToAutoPropertyCS</AssemblyName>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
<UseCodeBase>true</UseCodeBase>
......@@ -51,7 +47,6 @@
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<ItemGroup>
......@@ -67,11 +62,6 @@
<Reference Include="WindowsBase" />
<PackageReference Include="System.Composition" Version="$(SystemCompositionVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodeRefactoringProvider.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PropertyRewriter.cs" />
</ItemGroup>
<ItemGroup>
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<ImportVSSDKTargets>true</ImportVSSDKTargets>
......@@ -30,11 +30,7 @@
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{12E87057-11A1-4A58-AF89-7132789320F9}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ConvertToConditionalCS</RootNamespace>
<AssemblyName>ConvertToConditionalCS</AssemblyName>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
<UseCodeBase>true</UseCodeBase>
......@@ -54,7 +50,6 @@
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<ItemGroup>
......@@ -68,13 +63,6 @@
<Reference Include="WindowsBase" />
<PackageReference Include="System.Composition" Version="$(SystemCompositionVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodeRefactoringProvider.cs" />
<Compile Include="ConditionalAnalyzer.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ReturnConditionalAnalyzer.cs" />
</ItemGroup>
<ItemGroup>
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Nonshipping>true</Nonshipping>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{D2357ECA-345B-4E3A-9CA5-505082C13EAB}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ConvertToConditionalCS.UnitTests</RootNamespace>
<AssemblyName>ConvertToConditionalCS.UnitTests</AssemblyName>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
<RoslynProjectType>UnitTest</RoslynProjectType>
......@@ -70,10 +66,6 @@
<PackageReference Include="xunit" Version="$(xunitVersion)" />
<PackageReference Include="xunit.runner.console" Version="$(xunitrunnerconsoleVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Include="ConvertToConditionalTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<ImportVSSDKTargets>true</ImportVSSDKTargets>
......@@ -34,9 +34,7 @@
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{82DF4070-0A70-4378-8A6E-7FF035CA619F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Roslyn.Samples.CodeAction.CopyPasteWithUsing</RootNamespace>
<AssemblyName>Roslyn.Samples.CodeAction.CopyPasteWithUsing</AssemblyName>
<TargetFramework>net46</TargetFramework>
......@@ -58,7 +56,6 @@
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<ItemGroup>
......@@ -76,14 +73,5 @@
<PackageReference Include="Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime" Version="$(MicrosoftVisualStudioShellInterop140DesignTimeVersion)" />
<PackageReference Include="Microsoft.VisualStudio.Editor" Version="$(MicrosoftVisualStudioEditorVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Include="CopyData.cs" />
<Compile Include="CopyDataService.cs" />
<Compile Include="PasteHandler.cs" />
<Compile Include="TokenSymbolPairBuilder.cs" />
<Compile Include="Utilities\Contract.cs" />
<Compile Include="Utilities\Extensions.cs" />
<Compile Include="ViewCreationListener.cs" />
</ItemGroup>
<Import Project="..\..\..\..\build\Targets\Imports.targets" />
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{E2AE5575-436C-4CA5-9471-89D923FE84C6}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>FormatSolution</RootNamespace>
<AssemblyName>FormatSolution</AssemblyName>
<TargetFramework>net46</TargetFramework>
......@@ -50,8 +48,6 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<None Include="TestSolutionForCSharp\CSharpProject\CSharpClass.cs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
......@@ -68,6 +64,9 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Remove="TestSolutionForCSharp\CSharpProject\CSharpClass.cs" />
</ItemGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<ImportVSSDKTargets>true</ImportVSSDKTargets>
......@@ -32,11 +32,7 @@
<ScrubbedSamplePath>CSharp\ImplementNotifyPropertyChanged</ScrubbedSamplePath>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{23E24AFA-574E-47AA-860F-CAEF1DDCE74E}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ImplementNotifyPropertyChangedCS</RootNamespace>
<AssemblyName>ImplementNotifyPropertyChangedCS</AssemblyName>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
<UseCodeBase>true</UseCodeBase>
......@@ -56,7 +52,6 @@
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<ItemGroup>
......@@ -74,13 +69,6 @@
<PackageReference Include="EnvDTE" Version="$(EnvDTEVersion)" />
<PackageReference Include="System.Composition" Version="$(SystemCompositionVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodeGeneration.cs" />
<Compile Include="CodeRefactoringProvider.cs" />
<Compile Include="ExpandablePropertyInfo.cs" />
<Compile Include="ExpansionChecker.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<!-- dynamic -->
<Nonshipping>true</Nonshipping>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{6A3B538F-247F-456C-A763-91991ABEB324}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ImplementNotifyPropertyChangedCS.UnitTests</RootNamespace>
<AssemblyName>ImplementNotifyPropertyChangedCS.UnitTests</AssemblyName>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
<RoslynProjectType>UnitTest</RoslynProjectType>
......@@ -67,10 +63,5 @@
<PackageReference Include="xunit" Version="$(xunitVersion)" />
<PackageReference Include="xunit.runner.console" Version="$(xunitrunnerconsoleVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodeRefactoringTests.cs" />
<Compile Include="IsExpandableTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="..\..\..\..\..\build\Targets\Imports.targets" />
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<UseRoslynAnalyzers>false</UseRoslynAnalyzers>
</PropertyGroup>
......@@ -25,11 +25,7 @@
<ImportVSSDKTargets>true</ImportVSSDKTargets>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{DE9D901F-43D6-4559-A068-B6E28E04F12E}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MakeConstCS</RootNamespace>
<AssemblyName>MakeConstCS</AssemblyName>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
<UseCodeBase>true</UseCodeBase>
......@@ -49,7 +45,6 @@
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<ItemGroup>
......@@ -64,11 +59,6 @@
<Reference Include="WindowsBase" />
<PackageReference Include="System.Composition" Version="$(SystemCompositionVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodeFixProvider.cs" />
<Compile Include="DiagnosticAnalyzer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\SettingsSdk.props" />
<ItemGroup Label="Project References">
<ProjectReference Include="..\..\..\..\src\Workspaces\CSharp\Portable\CSharpWorkspace.csproj">
......@@ -33,9 +33,7 @@
<ImportVSSDKTargets>true</ImportVSSDKTargets>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{0101B6B7-FE1B-45E9-8C7F-5B4EFD12B030}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Roslyn.Samples.CodeAction.AddOrRemoveRefOutModifier</RootNamespace>
<AssemblyName>Roslyn.Samples.CodeAction.AddOrRemoveRefOutModifier</AssemblyName>
<TargetFramework>net46</TargetFramework>
......@@ -57,16 +55,10 @@
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="Actions\AddOutOrRefCodeAction.cs" />
<Compile Include="Actions\RemoveOutOrRefCodeAction.cs" />
<Compile Include="ApplicableActionFinder.cs" />
<Compile Include="CodeRefactoringProvider.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<Compile Update="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
......@@ -84,7 +76,7 @@
<PackageReference Include="System.Composition" Version="$(SystemCompositionVersion)" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Properties\Resources.resx">
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">x86</Platform>
<PlatformTarget>x86</PlatformTarget>
<ProductVersion>8.0.30703</ProductVersion>
<ProjectGuid>{0C3675A2-4DE8-4A86-BC2E-ABFC9CEB6BC5}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TreeTransformsCS</RootNamespace>
<AssemblyName>TreeTransformsCS</AssemblyName>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7-x86</RuntimeIdentifiers>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
......@@ -35,12 +31,5 @@
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Transforms.cs" />
<Compile Include="TransformVisitor.cs" />
<Compile Include="TreeTransformTests.cs" />
</ItemGroup>
<Import Project="..\..\..\..\build\Targets\Imports.targets" />
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Nonshipping>true</Nonshipping>
<!-- dynamic -->
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{D571F126-F0B6-487E-BB79-E91EAEE46F4F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Roslyn.UnitTestFramework</RootNamespace>
<AssemblyName>Roslyn.UnitTestFramework</AssemblyName>
<TargetFramework>net46</TargetFramework>
......@@ -51,14 +49,6 @@
<PackageReference Include="xunit" Version="$(xunitVersion)" />
<PackageReference Include="xunit.runner.console" Version="$(xunitrunnerconsoleVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodeActionProviderTestFixture.cs" />
<Compile Include="CodeRefactoringProviderTestFixture.cs" />
<Compile Include="DictionaryExtensions.cs" />
<Compile Include="EnumerableExtensions.ComparisonComparer.cs" />
<Compile Include="EnumerableExtensions.cs" />
<Compile Include="MarkupTestFile.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<TargetFramework>net46</TargetFramework>
......@@ -34,7 +34,6 @@
<ScrubbedSamplePath>VisualBasic\APISampleUnitTestsVB</ScrubbedSamplePath>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{A5C3CAA6-206D-41D1-9BE9-D8B5437D0D95}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>APISampleUnitTestsVB</RootNamespace>
<AssemblyName>APISampleUnitTestsVB.UnitTests</AssemblyName>
......@@ -53,15 +52,5 @@
<ItemGroup>
<Import Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="Compilations.vb" />
<Compile Include="Extensions.vb" />
<Compile Include="FAQ.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="Parsing.vb" />
<Compile Include="SymbolsAndSemantics.vb" />
<Compile Include="SyntaxTrees.vb" />
<Compile Include="TestCodeContainer.vb" />
</ItemGroup>
<Import Project="..\..\..\..\build\Targets\Imports.targets" />
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{5399E7A8-F8F1-4F2E-A5D2-9C96F3DD2A2D}</ProjectGuid>
<OutputType>Library</OutputType>
<AssemblyName>BasicAnalyzers.Tests</AssemblyName>
<MyType>Windows</MyType>
......@@ -27,23 +26,10 @@
<Import Include="System.Threading.Tasks" />
</ItemGroup>
<ItemGroup>
<Compile Include="Tests\CodeBlockAnalyzerUnitTests.vb" />
<Compile Include="Tests\CodeBlockStartedAnalyzerUnitTests.vb" />
<Compile Include="Tests\CompilationAnalyzerUnitTests.vb" />
<Compile Include="Tests\CompilationStartedAnalyzerUnitTests.vb" />
<Compile Include="Tests\CompilationStartedAnalyzerWithCompilationWideAnalysisUnitTests.vb" />
<Compile Include="Helpers\DiagnosticResult.vb" />
<Compile Include="Helpers\DiagnosticVerifier.Helper.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="My Project\Application.Designer.vb">
<Compile Update="My Project\Application.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Application.myapp</DependentUpon>
</Compile>
<Compile Include="Tests\SemanticModelAnalyzerUnitTests.vb" />
<Compile Include="Tests\SymbolAnalyzerUnitTests.vb" />
<Compile Include="Tests\SyntaxNodeAnalyzerUnitTests.vb" />
<Compile Include="Tests\SyntaxTreeAnalyzerUnitTests.vb" />
<Compile Include="Verifiers\DiagnosticVerifier.vb" />
</ItemGroup>
<ItemGroup>
<None Include="My Project\Application.myapp">
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{6E9FD555-EC3F-4865-A164-CB11A424B910}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>BasicAnalyzers</RootNamespace>
<AssemblyName>BasicAnalyzers.Vsix</AssemblyName>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
<TargetFramework>net46</TargetFramework>
<ImportVSSDKTargets>True</ImportVSSDKTargets>
......@@ -35,9 +33,6 @@
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<Compile Include="Empty.vb" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BasicAnalyzers\BasicAnalyzers.vbproj">
<Project>{9E86BCE5-E095-4E9F-9C45-22D5AEB6AD2A}</Project>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<UseRoslynAnalyzers>false</UseRoslynAnalyzers>
</PropertyGroup>
......@@ -8,7 +8,6 @@
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{41C3D7F9-BB1F-46F9-82E5-12B8C52F27B6}</ProjectGuid>
<OutputType>Exe</OutputType>
<StartupObject>Program</StartupObject>
<AssemblyName>ConsoleClassifier</AssemblyName>
......@@ -57,10 +56,6 @@
<ItemGroup>
<Import Include="System.Threading.Tasks" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.vb" />
<Compile Include="Range.vb" />
</ItemGroup>
<ItemGroup>
<Folder Include="My Project\" />
</ItemGroup>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\SettingsSdk.props" />
<ItemGroup Label="Project References">
<ProjectReference Include="..\..\..\..\..\src\Compilers\Core\Portable\CodeAnalysis.csproj">
......@@ -22,10 +22,8 @@
<ScrubbedSamplePath>VisualBasic\ConvertToAutoProperty</ScrubbedSamplePath>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{DA0874AB-377A-48CF-99FF-0B209916309D}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ConvertToAutoPropertyVB</RootNamespace>
<AssemblyName>ConvertToAutoPropertyVB</AssemblyName>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
<UseCodeBase>true</UseCodeBase>
......@@ -46,7 +44,6 @@
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<ItemGroup>
......@@ -59,11 +56,6 @@
<ItemGroup>
<Import Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodeRefactoringProvider.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="ReferenceRewriter.vb" />
</ItemGroup>
<ItemGroup>
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{A8D29846-9D4B-4B9F-91FF-7AE83965347C}</ProjectGuid>
<OutputType>Library</OutputType>
<AssemblyName>ConvertToAutoPropertyVB.UnitTests</AssemblyName>
<RootNamespace>ConvertToAutoPropertyVB.UnitTests</RootNamespace>
<NonShipping>true</NonShipping>
<MyType>Windows</MyType>
......@@ -81,9 +79,5 @@
<ItemGroup>
<Import Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="ConvertToAutoPropertyTests.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
</ItemGroup>
<Import Project="..\..\..\..\..\build\Targets\Imports.targets" />
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{979ECA30-895D-4F3F-AD2E-1B6388FAEBEF}</ProjectGuid>
<OutputType>Exe</OutputType>
<StartupObject>Program</StartupObject>
<AssemblyName>FormatSolution</AssemblyName>
......@@ -53,7 +52,6 @@
<Import Include="System.Threading.Tasks" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.vb" />
<None Include="TestSolutionForVB\CSharpProject\CSharpClass.cs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
......@@ -73,6 +71,9 @@
<ItemGroup>
<Folder Include="My Project\" />
</ItemGroup>
<ItemGroup>
<Compile Remove="TestSolutionForVB\VisualBasicProject\VisualBasicClass.vb" />
</ItemGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\SettingsSdk.props" />
<ItemGroup Label="Project References">
<ProjectReference Include="..\..\..\..\..\src\Compilers\Core\Portable\CodeAnalysis.csproj">
......@@ -22,10 +22,8 @@
<ImportVSSDKTargets>true</ImportVSSDKTargets>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{C182B3BA-431B-475E-ABA8-21A56283B493}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Roslyn.Samples.ImplementNotifyPropertyChangedVB</RootNamespace>
<AssemblyName>ImplementNotifyPropertyChangedVB</AssemblyName>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
<UseCodeBase>true</UseCodeBase>
......@@ -46,7 +44,6 @@
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<ItemGroup>
......@@ -67,13 +64,6 @@
<ItemGroup>
<Import Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodeGeneration.vb" />
<Compile Include="CodeRefactoringProvider.vb" />
<Compile Include="ExpandablePropertyInfo.vb" />
<Compile Include="ExpansionChecker.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
</ItemGroup>
<ItemGroup>
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Nonshipping>true</Nonshipping>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{EF5ACC32-7644-4CF0-87FC-AE9AFD0DB4D8}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ImplementNotifyPropertyChangedVB.UnitTests</RootNamespace>
<AssemblyName>ImplementNotifyPropertyChangedVB.UnitTests</AssemblyName>
<VBRuntime>Default</VBRuntime>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
......@@ -80,8 +78,5 @@
<PackageReference Include="xunit" Version="$(xunitVersion)" />
<PackageReference Include="xunit.runner.console" Version="$(xunitrunnerconsoleVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodeRefactoringTests.vb" />
</ItemGroup>
<Import Project="..\..\..\..\..\build\Targets\Imports.targets" />
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<UseRoslynAnalyzers>false</UseRoslynAnalyzers>
</PropertyGroup>
......@@ -25,10 +25,8 @@
<ImportVSSDKTargets>true</ImportVSSDKTargets>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{050DC082-5E4E-4175-8F7E-723B134774BE}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>MakeConstVB</RootNamespace>
<AssemblyName>MakeConstVB</AssemblyName>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
<GeneratePkgDefFile>false</GeneratePkgDefFile>
......@@ -39,7 +37,6 @@
<RoslynProjectType>Vsix</RoslynProjectType>
<OptionStrict>Off</OptionStrict>
<NoWarn>$(NoWarn);41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</NoWarn>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
......@@ -50,7 +47,6 @@
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<ItemGroup>
......@@ -68,11 +64,6 @@
<ItemGroup>
<Import Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodeFixProvider.vb" />
<Compile Include="DiagnosticAnalyzer.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
</ItemGroup>
<ItemGroup>
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\SettingsSdk.props" />
<ItemGroup Label="Project References">
<ProjectReference Include="..\..\..\..\..\src\Compilers\Core\Portable\CodeAnalysis.csproj">
......@@ -29,10 +29,8 @@
<ImportVSSDKTargets>true</ImportVSSDKTargets>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{4900921D-C548-4FBB-9681-BAF88E09DB3C}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>RemoveByValVB</RootNamespace>
<AssemblyName>RemoveByValVB</AssemblyName>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7</RuntimeIdentifiers>
<GeneratePkgDefFile>false</GeneratePkgDefFile>
......@@ -53,7 +51,6 @@
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<ItemGroup>
......@@ -70,10 +67,6 @@
<ItemGroup>
<Import Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodeRefactoringProvider.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
</ItemGroup>
<ItemGroup>
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<ProjectGuid>{D4D09B9B-8421-40B9-B4A9-594DAD5AF8DD}</ProjectGuid>
<OutputType>Library</OutputType>
<AssemblyName>RemoveByValVB.UnitTests</AssemblyName>
<RootNamespace>RemoveByValVB.UnitTests</RootNamespace>
<NonShipping>true</NonShipping>
<MyType>Windows</MyType>
......@@ -93,9 +91,5 @@
<ItemGroup>
<Import Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="RemoveByValTests.vb" />
</ItemGroup>
<Import Project="..\..\..\..\..\build\Targets\Imports.targets" />
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\SettingsSdk.props" />
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">x86</Platform>
<PlatformTarget>x86</PlatformTarget>
<ProductVersion></ProductVersion>
<ProjectGuid>{D89124D4-FB1D-4D08-BD95-F60BD24D5965}</ProjectGuid>
<OutputType>Exe</OutputType>
<StartupObject>TreeTransformsVB.Module1</StartupObject>
<RootNamespace>TreeTransformsVB</RootNamespace>
<AssemblyName>TreeTransformsVB</AssemblyName>
<MyType>Console</MyType>
<TargetFramework>net46</TargetFramework>
<RuntimeIdentifiers>win7-x86</RuntimeIdentifiers>
......@@ -32,7 +30,6 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'" />
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<ItemGroup>
......@@ -49,12 +46,5 @@
<Import Include="System.Data" />
<Import Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="Module1.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="Transforms.vb" />
<Compile Include="TransformVisitor.vb" />
<Compile Include="TreeTransformTests.vb" />
</ItemGroup>
<Import Project="..\..\..\..\build\Targets\Imports.targets" />
</Project>
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册