12345678910111213141516171819202122232425 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>netcoreapp2.1</TargetFramework>
- <Version>2.1.3.627</Version>
- <PackageProjectUrl>https://github.com/serset/Sers</PackageProjectUrl>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\..\Gateway\App.Gateway\Program.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Library\Sers\Sers.CL\Ipc\Sers.CL.Ipc.SharedMemory\Sers.CL.Ipc.SharedMemory.csproj" />
- <ProjectReference Include="..\..\Library\Sers\Sers.CL\WebSocket\Sers.CL.WebSocket\Sers.CL.WebSocket.csproj" />
- <ProjectReference Include="..\..\Library\Sers\Sers.CL\Zmq\FullDuplex\Sers.CL.Zmq.FullDuplex\Sers.CL.Zmq.FullDuplex.csproj" />
- <ProjectReference Include="..\..\Library\Sers\Sers.CL\Zmq\ThreadWait\Sers.CL.ClrZmq.ThreadWait\Sers.CL.ClrZmq.ThreadWait.csproj" />
- <ProjectReference Include="..\..\Gateway\Sers.Gateway\Sers.Gateway\Sers.Gateway.csproj" />
- </ItemGroup>
- <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
- <Exec Command="xcopy "$(ProjectDir)wwwroot" "$(TargetDir)\wwwroot" /e /i /r /y" />
- </Target>
- </Project>
|