Files
libremetaverse/Programs/mapgenerator/mapgenerator.csproj

22 lines
829 B
XML
Raw Normal View History

2019-10-22 20:30:05 -05: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>
2021-12-29 11:40:43 -06:00
<PackageId>LibreMetaverse.MapGenerator</PackageId>
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<Platforms>AnyCPU;x64;x86</Platforms>
2021-12-29 10:23:37 -06:00
<OutputPath>..\..\bin\</OutputPath>
<IsTool>true</IsTool>
2021-12-29 15:18:13 -06:00
<IncludeSymbols>true</IncludeSymbols>
<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>
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="docs\" />
<None Include="..\..\README.md" Pack="true" PackagePath="docs\" />
<None Include="..\..\data\logo.png" Pack="true" PackagePath="images\" />
<None Include="unusedpackets.txt" Pack="true" PackagePath="\" />
</ItemGroup>
2019-10-21 20:33:52 -05:00
</Project>