21 lines
604 B
XML
21 lines
604 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RootNamespace>PaperRacing.WebService</RootNamespace>
|
|
<AssemblyName>racing-webservice</AssemblyName>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<StartupObject>PaperRacing.WebService.Program</StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="ProgramWebService.cs" />
|
|
<Compile Include="ProgramAStar.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|