2022-11-11 12:06:30 -06:00
|
|
|
|
<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)))' ">
|
2022-11-11 12:06:30 -06:00
|
|
|
|
<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)))' ">
|
2022-11-11 12:06:30 -06:00
|
|
|
|
<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)))' ">
|
2022-11-11 12:06:30 -06:00
|
|
|
|
<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>
|
2021-12-29 13:44:03 -06:00
|
|
|
|
<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>
|
2021-12-29 14:49:56 -06:00
|
|
|
|
<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>
|
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>
|