Files
PointCloudWeb/PointCloudWeb.Server/PointCloudWeb.Server.ScanConverter/PointCloudWeb.Server.ScanConverter.csproj
Tim Wundenberg acda8b9eac implement registration
try running simple wsl-command fails
add Ply-File export
change build-target to x64 (for wsl)
2021-08-22 18:58:46 +02:00

21 lines
565 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\PointCloudWeb.Server\PointCloudWeb.Server.csproj" />
</ItemGroup>
</Project>