mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 13:44:38 +00:00
Breaking Changes: * `System.Drawing.Common` is dropped and `SixLabors.ImageSharp` is introduced. * uses of `NativeImage.CreateFromBitmap(bitmap, options);` is no longer supported, will cause failed builds. Unexpected Behaviors: * uses ToDataUrl will always create png data urls, unexpected output may happen for those that manipulate this output expecting a different data url format. Obsoletions: * `CreateFromBitmapOptions` & `CreateFromBufferOptions` have been consolidated into `CreateOptions`. Implicit conversions added to ease transition. * `ToBitmapOptions`, `ToDataUrlOptions`, `ToPngOptions` & `BitmapOptions` have been consolidated into `ImageOptions`. Implicit conversions added to ease transition.
48 lines
2.1 KiB
XML
48 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageOutputPath>..\artifacts</PackageOutputPath>
|
|
<PackageId>ElectronNET.API</PackageId>
|
|
<Authors>Gregor Biswanger, Robert Muehsig</Authors>
|
|
<Company />
|
|
<Product>Electron.NET</Product>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/ElectronNET/Electron.NET/</PackageProjectUrl>
|
|
<Description>Building cross platform electron based desktop apps with .NET Core and ASP.NET Core.
|
|
This package contains the API to access the "native" electron API.</Description>
|
|
<RepositoryUrl>https://github.com/ElectronNET/Electron.NET/</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<PackageTags>electron aspnetcore</PackageTags>
|
|
<PackageReleaseNotes>Changelog: https://github.com/ElectronNET/Electron.NET/blob/master/Changelog.md</PackageReleaseNotes>
|
|
<PackageIcon>PackageIcon.png</PackageIcon>
|
|
<Version>99.0.0.0</Version>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="PackageIcon.png" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(OS)' == 'Windows_NT'">
|
|
<Exec Command="$(ProjectDir)devCleanup.cmd" IgnoreExitCode="true" />
|
|
</Target>
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(OS)' != 'Windows_NT'">
|
|
<Exec Command="$(ProjectDir)devCleanup.sh" IgnoreExitCode="true" />
|
|
</Target>
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.4" />
|
|
<PackageReference Include="SocketIoClientDotNet" Version="1.0.5" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|