2019-10-21 20:35:01 -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)))' ">
|
|
|
|
|
|
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' ">
|
|
|
|
|
|
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
|
|
|
|
|
|
</PropertyGroup>
|
2019-10-22 20:30:05 -05:00
|
|
|
|
<PropertyGroup>
|
2021-12-29 11:40:43 -06:00
|
|
|
|
<PackageId>LibreMetaverse.Baker</PackageId>
|
|
|
|
|
|
<AssemblyName>Baker</AssemblyName>
|
2021-06-18 17:39:18 -05:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2021-12-28 19:25:54 -06:00
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
2021-12-29 10:23:37 -06:00
|
|
|
|
<OutputType>WinExe</OutputType>
|
2019-10-22 20:30:05 -05:00
|
|
|
|
<OutputPath>..\..\bin\</OutputPath>
|
2021-07-04 18:01:05 -05:00
|
|
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
2019-10-22 20:30:05 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\LibreMetaverse\LibreMetaverse.csproj" />
|
2021-07-26 11:43:31 -05:00
|
|
|
|
<ProjectReference Include="..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
|
2019-10-22 20:30:05 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|