Files
libremetaverse/Programs/mapgenerator/mapgenerator.csproj
2022-11-20 01:00:11 -06:00

22 lines
828 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>MapGenerator</AssemblyName>
<OutputType>Exe</OutputType>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<OutputPath>..\..\bin\</OutputPath>
<PackageId>LibreMetaverse.MapGenerator</PackageId>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<Platforms>AnyCPU</Platforms>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<Compile Remove="template.cs" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="\" />
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\data\logo.png" Pack="true" PackagePath="\" />
<None Include="unusedpackets.txt" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>