Files
libremetaverse/Programs/Baker/Baker.csproj

31 lines
1.6 KiB
XML
Raw Normal View History

<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>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)))' ">
<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)))' ">
<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>
<PackageId>Baker</PackageId>
2021-12-29 11:40:43 -06:00
<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>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" />
<ProjectReference Include="..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
2019-10-22 20:30:05 -05:00
</ItemGroup>
<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="\" />
</ItemGroup>
2019-10-22 20:30:05 -05:00
</Project>