Fix case in MapGenerator paths

This commit is contained in:
cinder
2025-01-12 10:35:40 -06:00
parent e27b517918
commit 1f7eddafb1
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>LibreMetaverse.MapGenerator</PackageId>
<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>
</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>