提交 122a7608 编写于 作者: B Brett V. Forsgren 提交者: GitHub

Merge pull request #12894 from brettfo/revert-name-and-version

Revert PRs #12725, #12726, #12786, and #12794 from `dev15-preview-4`.
......@@ -7,6 +7,8 @@
<PropertyGroup>
<!-- This is the assembly version of Roslyn from the .NET assembly perspective. It should only be revved during significant point releases. -->
<RoslynAssemblyVersionBase Condition="'$(RoslynAssemblyVersion)' == ''">2.0.0</RoslynAssemblyVersionBase>
<!-- This is the next assembly version of Roslyn from the .NET assembly perspective. -->
<NextRoslynAssemblyVersionBase Condition="'$(NextRoslynAssemblyVersion)' == ''">3.0.0</NextRoslynAssemblyVersionBase>
<!-- This is the file version of Roslyn, as placed in the PE header. It should be revved during point releases, and is also what provides the basis for our NuGet package versioning. -->
<RoslynFileVersionBase Condition="'$(RoslynFileVersionBase)' == ''">2.0.0</RoslynFileVersionBase>
<!-- This is the base of the NuGet versioning for prerelease packages -->
......@@ -51,6 +53,7 @@
<When Condition="'$(OfficialBuild)' == 'true' OR '$(SignedBuild)' == 'true' OR '$(UseShippingAssemblyVersion)' == 'true'">
<PropertyGroup>
<AssemblyVersion>$(RoslynAssemblyVersionBase).0</AssemblyVersion>
<NextAssemblyVersion>$(NextRoslynAssemblyVersionBase).0</NextAssemblyVersion>
<BuildVersion>$(RoslynFileVersionBase).$(BuildNumberFiveDigitDateStamp)</BuildVersion>
<VsixVersion>$(RoslynFileVersionBase).$(BuildNumberFiveDigitDateStamp)$(BuildNumberBuildOfTheDayPadded)</VsixVersion>
</PropertyGroup>
......@@ -63,6 +66,7 @@
this number. -->
<PropertyGroup>
<AssemblyVersion>42.42.42.42</AssemblyVersion>
<NextAssemblyVersion>42.42.42.42</NextAssemblyVersion>
<BuildVersion>42.42.42.42</BuildVersion>
<VsixVersion>42.42.42.42</VsixVersion>
</PropertyGroup>
......
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\ProducesNoOutput.Settings.targets" />
<Import Project="..\..\..\..\build\Targets\VSL.Versions.targets" />
<PropertyGroup>
<OutputArchitecture>neutral</OutputArchitecture>
......@@ -13,7 +14,7 @@
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.props" />
<PropertyGroup>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(VsixVersion);OutputPath=$(OutDir)</PackagePreprocessorDefinitions>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(AssemblyVersion);OutputPath=$(OutDir)</PackagePreprocessorDefinitions>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
......
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\ProducesNoOutput.Settings.targets" />
<Import Project="..\..\..\..\build\Targets\VSL.Versions.targets" />
<PropertyGroup>
<FinalizeManifest>true</FinalizeManifest>
......
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\ProducesNoOutput.Settings.targets" />
<Import Project="..\..\..\..\build\Targets\VSL.Versions.targets" />
<PropertyGroup>
<FinalizeManifest>true</FinalizeManifest>
......@@ -13,13 +14,10 @@
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.props" />
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.targets" />
<ItemGroup>
<ProjectReference Include="..\MicrosoftVisualStudioInteractiveWindow\Microsoft.VisualStudio.InteractiveWindow.vsmanproj" />
</ItemGroup>
<Target Name="BeforeBuild">
<MSBuild Projects="MicrosoftCodeAnalysisExpressionEvaluator\Microsoft.CodeAnalysis.ExpressionEvaluator.swixproj" Targets="Build" />
<MSBuild Projects="MicrosoftCodeAnalysisVisualStudioInteractiveComponents\Microsoft.CodeAnalysis.VisualStudioInteractiveComponents.swixproj" Targets="Build" />
<MSBuild Projects="MicrosoftCodeAnalysisVisualStudioInteractiveWindow\Microsoft.CodeAnalysis.VisualStudioInteractiveWindow.swixproj" Targets="Build" />
<MSBuild Projects="MicrosoftCodeAnalysisVisualStudioSetup\Microsoft.CodeAnalysis.VisualStudio.Setup.swixproj" Targets="Build" />
<MSBuild Projects="MicrosoftCodeAnalysisVisualStudioSetupInteractive\Microsoft.CodeAnalysis.VisualStudio.Setup.Interactive.swixproj" Targets="Build" />
<MSBuild Projects="MicrosoftCodeAnalysisVisualStudioSetupNext\Microsoft.CodeAnalysis.VisualStudio.Setup.Next.swixproj" Targets="Build" />
......@@ -29,10 +27,10 @@
<ItemGroup>
<MergeManifest Include="$(OutputPath)Microsoft.CodeAnalysis.ExpressionEvaluator.json" />
<MergeManifest Include="$(OutputPath)Microsoft.CodeAnalysis.VisualStudioInteractiveComponents.json" />
<MergeManifest Include="$(OutputPath)Microsoft.CodeAnalysis.VisualStudioInteractiveWindow.json" />
<MergeManifest Include="$(OutputPath)Microsoft.CodeAnalysis.VisualStudio.Setup.json" />
<MergeManifest Include="$(OutputPath)Microsoft.CodeAnalysis.VisualStudio.Setup.Interactive.json" />
<MergeManifest Include="$(OutputPath)Microsoft.CodeAnalysis.VisualStudio.Setup.Next.json" />
<MergeManifest Include="$(OutputPath)Microsoft.CodeAnalysis.VisualStudio.Telemetry.json" />
<MergeManifest Include="$(OutputPath)Microsoft.VisualStudio.InteractiveWindow.json" />
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\ProducesNoOutput.Settings.targets" />
<Import Project="..\..\..\..\..\build\Targets\VSL.Versions.targets" />
<PropertyGroup>
<OutputArchitecture>neutral</OutputArchitecture>
......@@ -12,7 +13,7 @@
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.props" />
<PropertyGroup>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(VsixVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(AssemblyVersion);NextVersion=$(NextAssemblyVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
......
......@@ -16,5 +16,5 @@ vs.payloads
vs.dependencies
vs.dependency id=Microsoft.CodeAnalysis.VisualStudio.Setup
version=$(Version)
version=[$(Version),$(NextVersion))
type=Required
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\ProducesNoOutput.Settings.targets" />
<Import Project="..\..\..\..\..\build\Targets\VSL.Versions.targets" />
<PropertyGroup>
<OutputArchitecture>neutral</OutputArchitecture>
......@@ -12,7 +13,7 @@
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.props" />
<PropertyGroup>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(VsixVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(AssemblyVersion);NextVersion=$(NextAssemblyVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
......
......@@ -16,8 +16,8 @@ vs.payloads
vs.dependencies
vs.dependency id=Microsoft.CodeAnalysis.VisualStudio.Setup
version=$(Version)
version=[$(Version),$(NextVersion))
type=Required
vs.dependency id=Microsoft.VisualStudio.InteractiveWindow
version=$(Version)
vs.dependency id=Microsoft.CodeAnalysis.VisualStudio.InteractiveWindow
version=[$(Version),$(NextVersion))
type=Required
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\ProducesNoOutput.Settings.targets" />
<Import Project="..\..\..\..\..\build\Targets\ProducesNoOutput.Settings.targets" />
<Import Project="..\..\..\..\..\build\Targets\VSL.Versions.targets" />
<PropertyGroup>
<OutputArchitecture>neutral</OutputArchitecture>
......@@ -12,12 +13,12 @@
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.props" />
<PropertyGroup>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(VsixVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(AssemblyVersion);NextVersion=$(NextAssemblyVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<ItemGroup>
<Package Include="Microsoft.VisualStudio.InteractiveWindow.swr" />
<Package Include="Microsoft.CodeAnalysis.VisualStudioInteractiveWindow.swr" />
</ItemGroup>
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.targets" />
......
use vs
package name=Microsoft.VisualStudio.InteractiveWindow
package name=Microsoft.CodeAnalysis.VisualStudio.InteractiveWindow
version=$(Version)
vs.package.language=en-us
vs.package.type=vsix
......
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\ProducesNoOutput.Settings.targets" />
<Import Project="..\..\..\..\..\build\Targets\VSL.Versions.targets" />
<PropertyGroup>
<OutputArchitecture>neutral</OutputArchitecture>
......@@ -12,7 +13,7 @@
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.props" />
<PropertyGroup>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(VsixVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(AssemblyVersion);NextVersion=$(NextAssemblyVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
......
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\ProducesNoOutput.Settings.targets" />
<Import Project="..\..\..\..\..\build\Targets\VSL.Versions.targets" />
<PropertyGroup>
<OutputArchitecture>neutral</OutputArchitecture>
......@@ -12,7 +13,7 @@
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.props" />
<PropertyGroup>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(VsixVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(AssemblyVersion);NextVersion=$(NextAssemblyVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
......
......@@ -16,11 +16,11 @@ vs.payloads
vs.dependencies
vs.dependency id=Microsoft.CodeAnalysis.VisualStudio.Setup
version=$(Version)
version=[$(Version),$(NextVersion))
type=Required
vs.dependency id=Microsoft.CodeAnalysis.VisualStudio.InteractiveComponents
version=$(Version)
version=[$(Version),$(NextVersion))
type=Required
vs.dependency id=Microsoft.VisualStudio.InteractiveWindow
version=$(Version)
vs.dependency id=Microsoft.CodeAnalysis.VisualStudio.InteractiveWindow
version=[$(Version),$(NextVersion))
type=Required
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\ProducesNoOutput.Settings.targets" />
<Import Project="..\..\..\..\..\build\Targets\VSL.Versions.targets" />
<PropertyGroup>
<OutputArchitecture>neutral</OutputArchitecture>
......@@ -12,7 +13,7 @@
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.props" />
<PropertyGroup>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(VsixVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(AssemblyVersion);NextVersion=$(NextAssemblyVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
......
......@@ -16,5 +16,5 @@ vs.payloads
vs.dependencies
vs.dependency id=Microsoft.CodeAnalysis.VisualStudio.Setup
version=$(Version)
version=[$(Version),$(NextVersion))
type=Required
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\build\Targets\ProducesNoOutput.Settings.targets" />
<Import Project="..\..\..\..\..\build\Targets\VSL.Versions.targets" />
<PropertyGroup>
<OutputArchitecture>neutral</OutputArchitecture>
......@@ -12,7 +13,7 @@
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.props" />
<PropertyGroup>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(VsixVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<PackagePreprocessorDefinitions>$(PackagePreprocessorDefinitions);Version=$(AssemblyVersion);NextVersion=$(NextAssemblyVersion);OutputPath=$(OutDir);LicenseUri=http://www.microsoft.com</PackagePreprocessorDefinitions>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
......
......@@ -16,5 +16,5 @@ vs.payloads
vs.dependencies
vs.dependency id=Microsoft.CodeAnalysis.VisualStudio.Setup
version=$(Version)
version=[$(Version),$(NextVersion))
type=Required
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\build\Targets\ProducesNoOutput.Settings.targets" />
<PropertyGroup>
<FinalizeManifest>true</FinalizeManifest>
<FinalizeSkipLayout>true</FinalizeSkipLayout>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<OutputPath>$(OutDir)Insertion</OutputPath>
<IsPackage>true</IsPackage>
</PropertyGroup>
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.props" />
<Import Project="$(NuGetPackageRoot)\MicroBuild.Core\$(MicroBuildVersion)\build\MicroBuild.Core.targets" />
<Target Name="BeforeBuild">
<MSBuild Projects="Microsoft.VisualStudio.InteractiveWindow.swixproj" Targets="Build" />
</Target>
<ItemGroup>
<MergeManifest Include="$(OutputPath)Microsoft.VisualStudio.InteractiveWindow.json" />
</ItemGroup>
</Project>
......@@ -9,8 +9,8 @@
<MSBuild Projects="DevDivPackages\Dependencies.proj" />
<MSBuild Projects="DevDivInsertionFiles\DevDivInsertionFiles.sln" />
<MSBuild Projects="DevDivPackages\Roslyn.proj" />
<MSBuild Projects="DevDivVsix\CompilersPackage\Microsoft.CodeAnalysis.Compilers.vsmanproj" />
<MSBuild Projects="DevDivVsix\MicrosoftCodeAnalysisLanguageServices\Microsoft.CodeAnalysis.LanguageServices.vsmanproj" />
<MSBuild Projects="DevDivVsix\CompilersPackage\Microsoft.CodeAnalysis.Compilers.vsmanproj" Condition="'$(RunningInMicroBuild)' == 'true'" />
<MSBuild Projects="DevDivVsix\MicrosoftCodeAnalysisLanguageServices\Microsoft.CodeAnalysis.LanguageServices.vsmanproj" Condition="'$(RunningInMicroBuild)' == 'true'" />
<!-- Dependencies -->
<!-- <MSBuild Projects="..\..\..\Closed\Test\Resources\TestResourcesProprietary.csproj" /> -->
......
......@@ -21,11 +21,11 @@ try
"Microsoft.CodeAnalysis.VisualStudio.Setup.Next.json",
"Microsoft.CodeAnalysis.VisualStudio.Telemetry.json",
"Microsoft.CodeAnalysis.VisualStudioInteractiveComponents.json",
"Microsoft.CodeAnalysis.VisualStudioInteractiveWindow.json",
"Microsoft.CodeAnalysis.LanguageServices.vsman",
"Microsoft.CodeAnalysis.Compilers.json",
"Microsoft.CodeAnalysis.Compilers.vsix",
"Microsoft.CodeAnalysis.Compilers.vsman",
"Microsoft.VisualStudio.InteractiveWindow.json")
"Microsoft.CodeAnalysis.Compilers.vsman")
$baseDestPath = join-path $binariesPath "Insertion"
if (-not (test-path $baseDestPath))
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册