Files
libremetaverse/Programs/mapgenerator/mapgenerator.csproj

22 lines
839 B
XML
Raw Normal View History

<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>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<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>
<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="\" />
<None Include="unusedpackets.txt" Pack="true" PackagePath="\" />
</ItemGroup>
2019-10-21 20:33:52 -05:00
</Project>