Files
libremetaverse/Programs/Baker/Baker.csproj

24 lines
1.3 KiB
XML
Raw Normal View History

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>
<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>
<Platforms>AnyCPU;x64;x86</Platforms>
2019-10-22 20:30:05 -05:00
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\LibreMetaverse\LibreMetaverse.csproj" />
<ProjectReference Include="..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
2019-10-22 20:30:05 -05:00
</ItemGroup>
</Project>