20 lines
879 B
XML
20 lines
879 B
XML
<Project>
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'OpenTelemetry.sln'))\build\Common.nonprod.props" />
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<!-- https://dotnet.microsoft.com/download/dotnet-core -->
|
|
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
|
|
<!-- https://dotnet.microsoft.com/download/dotnet-framework -->
|
|
<TargetFrameworks Condition="$(OS) == 'Windows_NT'">$(TargetFrameworks);net461;net462;net47;net471;net472;net48</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Package versions used in this folder">
|
|
<!--
|
|
Please sort alphabetically.
|
|
Refer to https://docs.microsoft.com/nuget/concepts/package-versioning for semver syntax.
|
|
-->
|
|
<MicrosoftExtensionsLoggingPkgVer>[6.0.0,)</MicrosoftExtensionsLoggingPkgVer>
|
|
</PropertyGroup>
|
|
</Project>
|