2022-11-11 12:06:30 -06:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-10-21 20:33:52 -05:00
|
|
|
|
<PropertyGroup>
|
2021-12-29 09:15:24 -06:00
|
|
|
|
<AssemblyName>MapGenerator</AssemblyName>
|
2022-01-04 16:35:44 -06:00
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
|
|
|
|
<OutputPath>..\..\bin\</OutputPath>
|
2021-12-29 11:40:43 -06:00
|
|
|
|
<PackageId>LibreMetaverse.MapGenerator</PackageId>
|
2024-01-15 14:34:29 -06:00
|
|
|
|
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
|
2022-01-06 10:27:33 -06:00
|
|
|
|
<Platforms>AnyCPU</Platforms>
|
2021-12-29 15:18:13 -06:00
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
2022-01-13 11:10:23 -06:00
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
2019-10-21 20:33:52 -05:00
|
|
|
|
</PropertyGroup>
|
2021-12-29 10:23:37 -06:00
|
|
|
|
<ItemGroup>
|
2019-10-22 20:30:05 -05:00
|
|
|
|
<Compile Remove="template.cs" />
|
|
|
|
|
|
</ItemGroup>
|
2021-12-29 14:49:56 -06:00
|
|
|
|
<ItemGroup>
|
2022-01-05 10:35:47 -06:00
|
|
|
|
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="\" />
|
|
|
|
|
|
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
|
|
|
|
|
|
<None Include="..\..\data\logo.png" Pack="true" PackagePath="\" />
|
2021-12-29 14:49:56 -06:00
|
|
|
|
<None Include="unusedpackets.txt" Pack="true" PackagePath="\" />
|
|
|
|
|
|
</ItemGroup>
|
2019-10-21 20:33:52 -05:00
|
|
|
|
</Project>
|