Files
libremetaverse/Programs/examples/GridAccountant/GridAccountant.csproj

35 lines
1.7 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2021-12-28 20:13:57 -06:00
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' ">
<TargetFrameworks>net6.0-windows;net7.0-windows</TargetFrameworks>
2021-12-28 20:13:57 -06:00
</PropertyGroup>
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' ">
<TargetFrameworks>net6.0-linux;net7.0-linux</TargetFrameworks>
2021-12-28 20:13:57 -06:00
</PropertyGroup>
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' ">
<TargetFrameworks>net6.0-macos;net7.0-macos</TargetFrameworks>
2021-12-28 20:13:57 -06:00
</PropertyGroup>
2019-10-22 20:30:05 -05:00
<PropertyGroup>
<PackageId>GridAccountant</PackageId>
2021-12-29 10:23:37 -06:00
<AssemblyName>GridAccountant</AssemblyName>
2021-12-28 20:03:06 -06:00
<UseWindowsForms>true</UseWindowsForms>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
2019-10-22 20:30:05 -05:00
<OutputType>WinExe</OutputType>
2021-12-28 20:03:06 -06:00
<OutputPath>..\..\..\bin\</OutputPath>
2021-12-28 20:13:57 -06:00
<Platforms>x64;x86</Platforms>
<IsPackable>false</IsPackable>
2019-10-22 20:30:05 -05:00
</PropertyGroup>
<ItemGroup>
2021-12-28 20:03:06 -06:00
<ProjectReference Include="..\..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
2019-10-22 20:30:05 -05:00
<ProjectReference Include="..\..\..\LibreMetaverse\LibreMetaverse.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="frmGridAccountant.resx">
<DependentUpon>frmGridAccountant.cs</DependentUpon>
</EmbeddedResource>
</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>