Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Commit a07a5bc

Browse files
author
MikhailArkhipov
committed
2 parents e043b13 + 4064892 commit a07a5bc

4 files changed

Lines changed: 5 additions & 17 deletions

File tree

build/Common.Build.Core.settings

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,6 @@
3131
<BuildNumber Condition="'$(BuildNumber)' == ''">$(BUILD_BUILDNUMBER)</BuildNumber>
3232
<BuildNumber Condition="'$(BuildNumber)' == ''">1000.00</BuildNumber>
3333
<!--
34-
The version number that will identify a specific build. This appears in
35-
Programs and Features, Extension Manager, and Help About.
36-
-->
37-
<FileVersionPrefix Condition="$(FileVersionPrefix) == ''">16.0</FileVersionPrefix>
38-
<FileVersion Condition="$(FileVersion) == ''">$(FileVersionPrefix).$(BuildNumber)</FileVersion>
39-
<!--
4034
The version number that will identify assembly compatibility.
4135
-->
4236
<StableVersionPrefix Condition="$(StableVersionPrefix) == ''">$(VSTarget).0</StableVersionPrefix>

build/NetStandard.settings

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
<PropertyGroup>
88
<BuildDependsOn>ValidateAssemblyName;$(BuildDependsOn)</BuildDependsOn>
99
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
10+
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
11+
<Company>Microsoft</Company>
1012
</PropertyGroup>
1113

1214
<!-- Compilation -->
@@ -24,11 +26,6 @@
2426
<RuntimeIdentifiers>win-x86;win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
2527
</PropertyGroup>
2628

27-
<!-- Versioning -->
28-
<PropertyGroup>
29-
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
30-
</PropertyGroup>
31-
3229
<!-- Signing -->
3330
<PropertyGroup>
3431
<MicroBuild_DoNotStrongNameSign>true</MicroBuild_DoNotStrongNameSign>

src/Analysis/Engine/Test/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,13 @@
99
// THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS
1010
// OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY
1111
// IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
12-
// MERCHANTABLITY OR NON-INFRINGEMENT.
12+
// MERCHANTABILITY OR NON-INFRINGEMENT.
1313
//
1414
// See the Apache Version 2.0 License for specific language governing
1515
// permissions and limitations under the License.
1616

1717
using System.Reflection;
1818
using System.Runtime.InteropServices;
1919

20-
[assembly: AssemblyTitle("AnalysisTests")]
21-
[assembly: AssemblyDescription("")]
22-
2320
[assembly: ComVisible(false)]
2421
[assembly: Guid("3e11e47d-2321-4769-96b9-38b1eaf8e4eb")]

src/Publish/SignLayout.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>netcoreapp2.1</TargetFramework>
44
<NoWarn>2008;$(NoWarn)</NoWarn>
55
</PropertyGroup>
6-
<Import Project="..\..\NetStandard.settings" />
6+
<Import Project="..\..\build\NetStandard.settings" />
77

88
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
99

@@ -52,5 +52,5 @@
5252
<Error Condition="@(_Missing) != ''" Text="Following files are missing: @(_Missing,'%0A')" />
5353
</Target>
5454

55-
<Import Project="..\..\NetStandard.targets" />
55+
<Import Project="..\..\build\NetStandard.targets" />
5656
</Project>

0 commit comments

Comments
 (0)