18 lines
695 B
XML
18 lines
695 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="16.4" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<ItemGroup>
|
|
<Solution Include="OpenTelemetry.sln" />
|
|
</ItemGroup>
|
|
|
|
<!-- The only need for this file is to synchronize the PreReleaseVersion -->
|
|
|
|
<Target Name="Build">
|
|
<MSBuild Projects="@(Solution)" Targets="Restore;Build" ContinueOnError="ErrorAndStop" Properties="PreReleaseVersion=$(PreReleaseVersion)"/>
|
|
</Target>
|
|
|
|
<Target Name="Pack">
|
|
<MSBuild Projects="@(Solution)" Targets="Restore;Build;Pack" ContinueOnError="ErrorAndStop" Properties="PreReleaseVersion=$(PreReleaseVersion)"/>
|
|
</Target>
|
|
|
|
</Project> |