63 lines
2.8 KiB
XML
63 lines
2.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<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)))' ">
|
|
<TargetFrameworks>net471;netcoreapp3.1</TargetFrameworks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' ">
|
|
<TargetFrameworks>net471;netcoreapp3.1</TargetFrameworks>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<AssemblyName>LibreMetaverse.GUI</AssemblyName>
|
|
<PackageId>LibreMetaverse.GUI</PackageId>
|
|
<Description>GUI library for LibreMetaverse</Description>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>LibreMetaverse.GUI</RootNamespace>
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<NoWarn>1591</NoWarn>
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
<OutputPath>..\bin\</OutputPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
<Optimize>False</Optimize>
|
|
</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)' == 'Release|AnyCPU' ">
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<DebugType>pdbonly</DebugType>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>True</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<DebugType>pdbonly</DebugType>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>True</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<DebugType>pdbonly</DebugType>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>True</Optimize>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
|
|
<ProjectReference Include="..\LibreMetaverse\LibreMetaverse.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE.txt">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |