Files
libremetaverse/Programs/Baker/Baker.csproj

30 lines
1.5 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>
<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>
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>