2022-04-12 20:31:56 +01: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)))' ">
|
2022-04-23 16:39:14 -05:00
|
|
|
<TargetFrameworks>netcoreapp3.1;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)))' ">
|
2022-04-23 16:39:14 -05:00
|
|
|
<TargetFrameworks>netcoreapp3.1;net5.0-linux;net6.0-linux</TargetFrameworks>
|
2021-07-24 14:04:54 -05:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' ">
|
2022-04-23 16:39:14 -05:00
|
|
|
<TargetFrameworks>netcoreapp3.1;net5.0-macos;net6.0-macos</TargetFrameworks>
|
2021-07-24 14:04:54 -05:00
|
|
|
</PropertyGroup>
|
2019-10-22 20:30:05 -05:00
|
|
|
<PropertyGroup>
|
2021-12-29 13:44:03 -06:00
|
|
|
<PackageId>Baker</PackageId>
|
2021-12-29 11:40:43 -06:00
|
|
|
<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>
|
2022-01-04 09:14:31 -06:00
|
|
|
<Platforms>x64;x86</Platforms>
|
2021-12-29 15:18:13 -06:00
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
2022-01-13 11:10:23 -06:00
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
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>
|
2021-12-29 14:49:56 -06:00
|
|
|
<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="\" />
|
2021-12-29 14:49:56 -06:00
|
|
|
</ItemGroup>
|
2019-10-22 20:30:05 -05:00
|
|
|
</Project>
|