19 lines
776 B
XML
19 lines
776 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="16.4" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<ItemGroup>
|
|
<SolutionProjects Include="**\*.csproj" />
|
|
<SolutionProjects Remove="**\*.Win.csproj" Condition="'$(OS)' != 'Windows_NT'" />
|
|
</ItemGroup>
|
|
|
|
<!-- The only need for this file is to synchronize the PreReleaseVersion -->
|
|
|
|
<Target Name="Build">
|
|
<MSBuild Projects="@(SolutionProjects)" Targets="Restore;Build" ContinueOnError="ErrorAndStop" Properties="PreReleaseVersion=$(PreReleaseVersion)"/>
|
|
</Target>
|
|
|
|
<Target Name="Pack">
|
|
<MSBuild Projects="@(SolutionProjects)" Targets="Pack" ContinueOnError="ErrorAndStop" Properties="PreReleaseVersion=$(PreReleaseVersion)"/>
|
|
</Target>
|
|
|
|
</Project> |