19 lines
547 B
XML
19 lines
547 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<AssemblyName>MapGenerator</AssemblyName>
|
|
<PackageId>LibreMetaverse.MapGenerator</PackageId>
|
|
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
|
|
<OutputType>Exe</OutputType>
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
<OutputPath>..\..\bin\</OutputPath>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="template.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="unusedpackets.txt">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |