34 строки
1.9 KiB
XML
34 строки
1.9 KiB
XML
<Project>
|
|
<!--<Import
|
|
Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), AspNetCoreSettings.props))\AspNetCoreSettings.props"
|
|
Condition=" '$(CI)' != 'true' AND '$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), AspNetCoreSettings.props))' != '' " />
|
|
!-->
|
|
<Import Project="version.props" />
|
|
<Import Project="build\sources.props" />
|
|
<Import Project="build\repo.props" />
|
|
<Import Project="build\dependencies.props" />
|
|
|
|
<PropertyGroup>
|
|
<WindowsOnly>false</WindowsOnly>
|
|
<WindowsFrameworks Condition="'$(OS)'=='Windows_NT'">net462;</WindowsFrameworks>
|
|
<CoreFrameworks>netcoreapp2.0;netcoreapp2.1</CoreFrameworks>
|
|
<TargetFrameworks>$(WindowsFrameworks)$(CoreFrameworks)</TargetFrameworks>
|
|
<WindowsRuntimeIdentifiers Condition="'$(OS)'=='Windows_NT'">win7-x64;win7-x86;win10-x64;win10-x86;</WindowsRuntimeIdentifiers>
|
|
<UnixRuntimeIdentifiers Condition="'$(WindowsOnly)'=='false'">osx-x64;debian.8-x64;ubuntu.16.10-x64;ubuntu.16.04-x64;opensuse-x64;ol-x64;rhel-x64;fedora-x64;centos-x64</UnixRuntimeIdentifiers>
|
|
<RuntimeIdentifiers>$(WindowsRuntimeIdentifiers)$(UnixRuntimeIdentifiers)</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Product>Microsoft Azure Relay Bridge</Product>
|
|
<RepositoryUrl>https://github.com/Azure/azure-relay-bridge</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
|
|
<BuildDir>$(RepositoryRoot)/artifacts/build</BuildDir>
|
|
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)build\Key.snk</AssemblyOriginatorKeyFile>
|
|
<SignAssembly>true</SignAssembly>
|
|
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<EnableApiCheck>false</EnableApiCheck>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
</PropertyGroup>
|
|
</Project> |