123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- </PropertyGroup>
- <PropertyGroup>
- <DebugType>Full</DebugType>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="ApiParamsJsonSchemas\appCtorParamsJsonSchema.json" />
- <None Remove="myCtorSchema.json" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="ApiParamsJsonSchemas\appCtorParamsJsonSchema.json" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\Framework\Edge.Core\Edge.Core.csproj" />
- <ProjectReference Include="..\FDCPOSInterfaceServer\FDCPOSInterfaceServer.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="doc\" />
- </ItemGroup>
- </Project>
|