35 lines
1.7 KiB
XML
35 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<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>
|
|
<PropertyGroup>
|
|
<PackageId>GridAccountant</PackageId>
|
|
<AssemblyName>GridAccountant</AssemblyName>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<OutputType>WinExe</OutputType>
|
|
<OutputPath>..\..\..\bin\</OutputPath>
|
|
<Platforms>x64;x86</Platforms>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
|
|
<ProjectReference Include="..\..\..\LibreMetaverse\LibreMetaverse.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="frmGridAccountant.resx">
|
|
<DependentUpon>frmGridAccountant.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="..\..\..\LICENSE.txt" Pack="true" PackagePath="\" />
|
|
<None Include="..\..\..\README.md" Pack="true" PackagePath="\" />
|
|
<None Include="..\..\..\data\logo.png" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
</Project> |