41 lines
1.6 KiB
XML
41 lines
1.6 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>WinExe</OutputType>
|
|||
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<UseWPF>true</UseWPF>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<None Remove="Data\sample.asc" />
|
|||
|
|
<None Remove="Data\test.json" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<EmbeddedResource Include="Data\sample.asc" />
|
|||
|
|
<EmbeddedResource Include="Data\test.json" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\Geo.Advanced.Viewer\Geo.Advanced.Viewer.csproj" />
|
|||
|
|
<ProjectReference Include="..\Geo.Coordinates.Convert\Geo.Coordinates.Convert.csproj" />
|
|||
|
|
<ProjectReference Include="..\Geo.Coordinates.Transformation\Geo.Coordinates.Transformation.csproj" />
|
|||
|
|
<ProjectReference Include="..\Geo.Epsg.Viewer\Geo.Epsg.Viewer.csproj" />
|
|||
|
|
<ProjectReference Include="..\Geo.Features.Editor\Geo.Features.Editor.csproj" />
|
|||
|
|
<ProjectReference Include="..\Geo.Layers.Conversion\Geo.Layers.Conversion.csproj" />
|
|||
|
|
<ProjectReference Include="..\Geo.Layers.InMemory\Geo.Layers.InMemory.csproj" />
|
|||
|
|
<ProjectReference Include="..\Geo.Layers.Join\Geo.Layers.Join.csproj" />
|
|||
|
|
<ProjectReference Include="..\Geo.Map.Generator\Geo.Map.Generator.csproj" />
|
|||
|
|
<ProjectReference Include="..\Geo.Map.Rendering\Geo.Map.Rendering.csproj" />
|
|||
|
|
<ProjectReference Include="..\Geo.Rasters.Viewer\Geo.Rasters.Viewer.csproj" />
|
|||
|
|
<ProjectReference Include="..\Geo.Tools.Paths\Geo.Tools.Paths.csproj" />
|
|||
|
|
<ProjectReference Include="..\Geo.Viewer\Geo.Viewer.WPF.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Folder Include="Maps\" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|