forked from microsoft/python-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetStandard.settings
More file actions
40 lines (35 loc) · 1.44 KB
/
NetStandard.settings
File metadata and controls
40 lines (35 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project>
<Target Name = "ValidateAssemblyName" >
<Error Condition = " '$(AssemblyName)'=='' " Text = "AssemblyName property must be specified before NetStandard.settings is referenced" />
</Target>
<Import Project="Common.Build.Core.settings" />
<PropertyGroup>
<BuildDependsOn>ValidateAssemblyName;$(BuildDependsOn)</BuildDependsOn>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<Company>Microsoft</Company>
</PropertyGroup>
<!-- Compilation -->
<PropertyGroup>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DebugType>portable</DebugType>
<NetStandard>true</NetStandard>
<DefineConstants>NETSTANDARD;$(DefineConstants)</DefineConstants>
</PropertyGroup>
<!-- Target .NET Core Runtimes -->
<PropertyGroup>
<!-- See https://docs.microsoft.com/en-us/dotnet/core/rid-catalog -->
<RuntimeIdentifiers>win-x86;win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
</PropertyGroup>
<!-- Signing -->
<PropertyGroup>
<MicroBuild_DoNotStrongNameSign>true</MicroBuild_DoNotStrongNameSign>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>$(DefineConstants);SIGN</DefineConstants>
<SignAssembly>true</SignAssembly>
<DelaySign>true</DelaySign>
<AssemblyOriginatorKeyFile>$(BuildRoot)\build\FinalPublicKey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
</Project>