Thanks to visit codestin.com
Credit goes to github.com

Skip to content
/ wpf Public
forked from Faithlife/wpf

WPF is a .NET Core UI framework for building Windows desktop applications.

License

Notifications You must be signed in to change notification settings

lindexi/wpf

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Faithlife.WPF

Build Status MIT License

This is a custom build of Windows Presentation Foundation maintained by Faithlife. The stable branch (6.x) is based off the release/6.0 branch and is suitable to use with .NET 6.0 applications. The master branch (7.x) tracks .NET 7.0 and is suitable for pre-release testing. The Release Notes list the differences from the official release.

Getting started

Consuming

To use Faithlife.Wpf, build a regular WPF application (dotnet new wpf). Add the Faithlife WPF package feed to your NuGet.config:

<configuration>
  <packageSources>
    <add key="Faithlife WPF" value="https://pkgs.dev.azure.com/Faithlife/WPF/_packaging/Public/nuget/v3/index.json" />
  </packageSources>
</configuration>

In your CSPROJ file, update the Microsoft.WindowsDesktop.App reference:

<ItemGroup>
  <FrameworkReference Update="Microsoft.WindowsDesktop.App" RuntimeFrameworkVersion="6.0.6-faithlife.1.22304.12" />
</ItemGroup>

Building

  • To build a dev package: build.cmd -c Release -platform x64 -test -pack
    • To use a unique version number, add /p:OfficialBuildId=YYYYMMDD.BUILD, e.g., /p:OfficialBuildId=20220324.5.
  • All commits pushed to the stable branch will build a CI package that will be pushed to the Azure Artifacts feed.
  • Contributing guide

Issues

Open an issue on this repo for problems specifically with this package. All other issues should be opened on dotnet/wpf.

License

WPF is licensed under the MIT license.

About

WPF is a .NET Core UI framework for building Windows desktop applications.

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 80.6%
  • C++ 12.9%
  • C 5.2%
  • Smalltalk 0.4%
  • PowerShell 0.2%
  • Roff 0.2%
  • Other 0.5%