1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <publish>Robot</publish>
- <docker>sers-demo-robot</docker>
- </PropertyGroup>
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
- <RunPostBuildEvent>Always</RunPostBuildEvent>
- <Version>2.1.19-preview8</Version>
- <Description>https://github.com/serset/Sers</Description>
- </PropertyGroup>
- <PropertyGroup>
- <DocumentationFile>bin\Debug\net6.0\App.Robot.Station.xml</DocumentationFile>
- </PropertyGroup>
- <ItemGroup>
- <Content Include="appsettings.json">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <None Update="Data\App.Robot.json">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <ItemGroup>
- <Content Include="wwwroot\**">
- <Link>wwwroot\%(RecursiveDir)%(Filename)%(Extension)</Link>
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </Content>
- </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="..\..\..\..\Library\Sers\Sers.ServiceStation\Sers.ServiceStation\Sers.ServiceStation.csproj" />
- </ItemGroup>
- </Project>
|