mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-04-07 14:06:11 +08:00
25 lines
761 B
XML
25 lines
761 B
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<PropertyGroup>
|
|
<To Condition=" '$(To)' == '' ">..\deploy\</To>
|
|
|
|
<RootDir Condition="$(RootDir)==''">..\..\</RootDir>
|
|
<DirCSharp>$(RootDir)web\documentserver-example\csharp\</DirCSharp>
|
|
<DirMvc>$(RootDir)web\documentserver-example\csharp-mvc\</DirMvc>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectToBuild Include="$(DirCSharp)OnlineEditorsExample.sln"/>
|
|
<ProjectToBuild Include="$(DirMvc)OnlineEditorsExampleMVC.sln"/>
|
|
</ItemGroup>
|
|
|
|
<Target Name="Build">
|
|
<MSBuild
|
|
Projects="@(ProjectToBuild)"
|
|
Targets="Build"
|
|
Properties="Configuration=Release"
|
|
RebaseOutputs="true"
|
|
StopOnFirstFailure="true"/>
|
|
</Target>
|
|
|
|
</Project> |