Skip to content

Commit cddf229

Browse files
authored
Merge pull request #106 from reneschulte/copilot/remove-uwp-winrt-silverlight
Reduce NuGet package to WPF-only builds
2 parents 8efbd28 + 2a2d0fe commit cddf229

File tree

3 files changed

+3
-23
lines changed

3 files changed

+3
-23
lines changed

NUGET_PACKAGE_BUILD.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ If you prefer to build locally, you need a **Windows machine** with the followin
5454
- Visual Studio 2017 or later
5555
- .NET Framework 4.0 SDK
5656
- .NET Core 3.0 SDK
57-
- Windows Phone SDK (for legacy targets, if needed)
5857

5958
### Building the Libraries (Manual Option)
6059

@@ -67,10 +66,6 @@ If you prefer to build locally, you need a **Windows machine** with the followin
6766
- `net40\WriteableBitmapEx.Wpf.dll`
6867
- `netcoreapp3.0\WriteableBitmapEx.Wpf.dll`
6968

70-
2. **Build Legacy Libraries** (if needed)
71-
- Silverlight (WriteableBitmapEx.dll)
72-
- Windows Phone (WriteableBitmapExWinPhone.dll)
73-
7469
### Creating the NuGet Package (Manual Option)
7570

7671
Once all libraries are built and placed in the `Build\Release\` directory:

Nuget/WriteableBitmapEx.nuspec

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,18 @@
99
<projectUrl>https://github.com/teichgraf/WriteableBitmapEx</projectUrl>
1010
<iconUrl>http://dl.dropbox.com/u/2681028/CodeplexData/WriteableBitmapEx/Nuget_Logo.png</iconUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12-
<summary>The WriteableBitmapEx library is a collection of extension methods for the WriteableBitmap. The WriteableBitmap class is available for WPF and allows the direct manipulation of a bitmap and could be used to generate fast procedural images by drawing directly to a bitmap.</summary>
12+
<summary>The WriteableBitmapEx library is a collection of extension methods for the WriteableBitmap. The WriteableBitmap class is available for WPF. It supports the .NET Framework and .NET Core 3 and allows the direct manipulation of a bitmap and could be used to generate fast procedural images by drawing directly to a bitmap.</summary>
1313
<description>The WriteableBitmapEx library extensions.</description>
1414
<releaseNotes>Minor fixes and improvements</releaseNotes>
1515
<copyright>Copyright (c) 2009-2025 Schulte Software Development</copyright>
1616
<tags>WriteableBitmap Bitmap Graphics WPF .NET Core NETCore</tags>
1717
</metadata>
1818
<files>
19-
<file src="..\Build\Release\WriteableBitmapEx.xml" target="lib\sl4" />
20-
<file src="..\Build\Release\WriteableBitmapEx.dll" target="lib\sl4" />
21-
<file src="..\Build\Release\WriteableBitmapEx.pdb" target="lib\sl4" />
2219
<file src="..\Build\Release\net40\WriteableBitmapEx.Wpf.xml" target="lib\net40" />
2320
<file src="..\Build\Release\net40\WriteableBitmapEx.Wpf.dll" target="lib\net40" />
2421
<file src="..\Build\Release\net40\WriteableBitmapEx.Wpf.pdb" target="lib\net40" />
2522
<file src="..\Build\Release\netcoreapp3.0\WriteableBitmapEx.Wpf.deps.json" target="lib\netcoreapp3.0" />
2623
<file src="..\Build\Release\netcoreapp3.0\WriteableBitmapEx.Wpf.dll" target="lib\netcoreapp3.0" />
2724
<file src="..\Build\Release\netcoreapp3.0\WriteableBitmapEx.Wpf.pdb" target="lib\netcoreapp3.0" />
28-
<file src="..\Build\Release\WriteableBitmapExWinPhone.xml" target="lib\sl4-wp71" />
29-
<file src="..\Build\Release\WriteableBitmapExWinPhone.dll" target="lib\sl4-wp71" />
30-
<file src="..\Build\Release\WriteableBitmapExWinPhone.pdb" target="lib\sl4-wp71" />
31-
<file src="..\Build\Release\WriteableBitmapExWinPhoneXnaDependant.xml" target="lib\sl4-wp71" />
32-
<file src="..\Build\Release\WriteableBitmapExWinPhoneXnaDependant.dll" target="lib\sl4-wp71" />
33-
<file src="..\Build\Release\WriteableBitmapExWinPhoneXnaDependant.pdb" target="lib\sl4-wp71" />
34-
<file src="..\Build\Release\WinPhone8\WriteableBitmapExWinPhone.xml" target="lib\WindowsPhone8" />
35-
<file src="..\Build\Release\WinPhone8\WriteableBitmapExWinPhone.dll" target="lib\WindowsPhone8" />
36-
<file src="..\Build\Release\WinPhone8\WriteableBitmapExWinPhone.pdb" target="lib\WindowsPhone8" />
37-
<file src="..\Build\Release\WinPhone8\WriteableBitmapExWinPhoneXnaDependant.xml" target="lib\WindowsPhone8" />
38-
<file src="..\Build\Release\WinPhone8\WriteableBitmapExWinPhoneXnaDependant.dll" target="lib\WindowsPhone8" />
39-
<file src="..\Build\Release\WinPhone8\WriteableBitmapExWinPhoneXnaDependant.pdb" target="lib\WindowsPhone8" />
4025
</files>
4126
</package>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WriteableBitmapEx
22

3-
The WriteableBitmapEx library is a collection of extension methods for the [WriteableBitmap](http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.writeablebitmap%28VS.95%29.aspx). The WriteableBitmap class is available for all XAML flavors including WPF, Windows 10 UWP, Windows Phone, WinRT Windows Store XAML and Silverlight. It supports the .NET Framework and .NET Core 3 and was even ported to [Windows Embedded](http://wbexembedded.codeplex.com). WriteableBitmapEx allows the direct manipulation of a bitmap and can be used for image manipulation, to generate fast procedural images by drawing directly to a bitmap and more.
3+
The WriteableBitmapEx library is a collection of extension methods for the [WriteableBitmap](http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.writeablebitmap%28VS.95%29.aspx). The WriteableBitmap class is available for WPF. It supports the .NET Framework and .NET Core 3. WriteableBitmapEx allows the direct manipulation of a bitmap and can be used for image manipulation, to generate fast procedural images by drawing directly to a bitmap and more.
44

55
The WriteableBitmap API is very minimalistic and there's only the raw [Pixels](http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.writeablebitmap.pixels(VS.95).aspx) array for such operations. The WriteableBitmapEx library tries to compensate that with extensions methods that are easy to use like built in methods and offer [GDI+](http://msdn.microsoft.com/en-us/library/ms533797(v=VS.85).aspx) like functionality. The library extends the WriteableBitmap class with elementary and fast (2D drawing) functionality, conversion methods and functions to combine (blit) WriteableBitmaps.
66

@@ -19,7 +19,7 @@ Please use the [GitHub Issues functionality](https://github.com/teichgraf/Writea
1919
# Features
2020

2121
[GDI+](http://msdn.microsoft.com/en-us/library/ms533797(v=VS.85).aspx) like drawing functionality for the WriteableBitmap.
22-
Support for WPF, Windows 10 UWP (, Windows 8/8.1 WinRT XAML, Windows Phone Silverlight, Windows Phone WinRT and desktop Silverlight).
22+
Support for WPF with .NET Framework and .NET Core 3.
2323

2424
* Base
2525
* Support for the [Color structure](http://msdn.microsoft.com/en-us/library/system.windows.media.color(VS.95).aspx) (alpha premultiplication will be performed)

0 commit comments

Comments
 (0)