Files
libremetaverse/LibreMetaverse.GUI/LibreMetaverse.GUI.csproj

64 lines
3.1 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2021-07-24 14:04:54 -05:00
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' ">
<TargetFrameworks>net471;net48;netcoreapp3.1;net5.0;net6.0;net5.0-windows;net6.0-windows</TargetFrameworks>
2021-07-24 14:04:54 -05:00
</PropertyGroup>
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' ">
<TargetFrameworks>net471;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
2021-07-24 14:04:54 -05:00
</PropertyGroup>
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' ">
<TargetFrameworks>net471;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
2021-07-24 14:04:54 -05:00
</PropertyGroup>
2017-03-12 11:00:35 -07:00
<PropertyGroup>
<AssemblyName>LibreMetaverse.GUI</AssemblyName>
2021-12-29 11:40:43 -06:00
<PackageId>LibreMetaverse.GUI</PackageId>
<Description>GUI library for LibreMetaverse</Description>
<UseWindowsForms>true</UseWindowsForms>
2017-03-12 11:00:35 -07:00
<OutputType>Library</OutputType>
<RootNamespace>LibreMetaverse.GUI</RootNamespace>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
2021-12-29 15:18:13 -06:00
<IncludeSymbols>true</IncludeSymbols>
2022-01-13 11:10:23 -06:00
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<NoWarn>0419,1574,1591</NoWarn>
<Platforms>x64;x86;AnyCPU</Platforms>
2021-12-29 10:23:37 -06:00
<OutputPath>..\bin\</OutputPath>
2017-03-12 11:00:35 -07:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
<Optimize>False</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
<Optimize>False</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
<Optimize>False</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
2021-12-29 10:23:37 -06:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugType>pdbonly</DebugType>
<DefineConstants>TRACE</DefineConstants>
<Optimize>True</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2021-12-29 10:23:37 -06:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugType>pdbonly</DebugType>
<DefineConstants>TRACE</DefineConstants>
<Optimize>True</Optimize>
2017-03-12 11:00:35 -07:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugType>pdbonly</DebugType>
<DefineConstants>TRACE</DefineConstants>
<Optimize>True</Optimize>
</PropertyGroup>
2017-03-12 11:00:35 -07:00
<ItemGroup>
<ProjectReference Include="..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
<ProjectReference Include="..\LibreMetaverse\LibreMetaverse.csproj" />
2017-03-12 11:00:35 -07:00
</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="\" />
</ItemGroup>
2017-03-12 11:00:35 -07:00
</Project>