Files
libremetaverse/Programs/MapGenerator/MapGenerator.csproj

23 lines
922 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2019-10-21 20:33:52 -05:00
<PropertyGroup>
<PackageId>LibreMetaverse.MapGenerator</PackageId>
2025-01-02 14:18:27 -06:00
<OutputType>Exe</OutputType>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<OutputPath>..\..\bin\</OutputPath>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<PlatformTarget>AnyCPU</PlatformTarget>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackAsTool>true</PackAsTool>
<ToolCommandName>LMV.MapGenerator</ToolCommandName>
2019-10-21 20:33:52 -05:00
</PropertyGroup>
2025-01-02 14:18:27 -06:00
<ItemGroup>
2019-10-22 20:30:05 -05:00
<Compile Remove="template.cs" />
</ItemGroup>
<ItemGroup>
2025-01-02 14:18:27 -06:00
<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>
2019-10-21 20:33:52 -05:00
</Project>