2019-10-22 08:05:39 -05:00
|
|
|
|
<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-windows</TargetFrameworks>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' ">
|
2021-07-25 09:04:08 -05:00
|
|
|
|
<TargetFrameworks>net471;netcoreapp3.1</TargetFrameworks>
|
2021-07-24 14:04:54 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' ">
|
2021-07-25 09:04:08 -05:00
|
|
|
|
<TargetFrameworks>net471;netcoreapp3.1</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>
|
2021-06-18 17:39:18 -05:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2017-03-12 11:00:35 -07:00
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<RootNamespace>LibreMetaverse.GUI</RootNamespace>
|
2017-09-04 18:13:38 -05:00
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
2021-12-29 11:40:43 -06:00
|
|
|
|
<NoWarn>1591</NoWarn>
|
2021-07-04 18:01:05 -05:00
|
|
|
|
<Platforms>AnyCPU;x64;x86</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|AnyCPU' ">
|
|
|
|
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
|
|
|
|
<Optimize>False</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
2021-07-04 18:01:05 -05:00
|
|
|
|
<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>
|
2017-03-12 11:00:35 -07:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
2021-12-29 10:23:37 -06:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
2017-03-12 11:00:35 -07:00
|
|
|
|
<Optimize>True</Optimize>
|
2021-07-04 18:01:05 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
|
2021-12-29 10:23:37 -06:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
2021-07-04 18:01:05 -05:00
|
|
|
|
<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>
|
2021-07-04 18:01:05 -05:00
|
|
|
|
<Optimize>True</Optimize>
|
2017-03-12 11:00:35 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2021-07-26 11:43:31 -05:00
|
|
|
|
<ProjectReference Include="..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
|
2017-09-03 13:28:19 -05:00
|
|
|
|
<ProjectReference Include="..\LibreMetaverse\LibreMetaverse.csproj" />
|
2017-03-12 11:00:35 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|