mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 00:56:03 +02:00
* Add new snippet for dependency precedence article * Add article * Minor edits * Update dotnet-desktop-guide/net/wpf/properties/dependency-property-value-precedence.md Co-authored-by: Andy (Steve) De George <[email protected]> * Update dotnet-desktop-guide/net/wpf/properties/dependency-property-value-precedence.md Co-authored-by: Andy (Steve) De George <[email protected]> * Make reviewer requested changes * Revert "Add new snippet for dependency precedence article" This reverts commit 11657c18bdf9b8ed8037e689b84be643d7e7b9e7. * Fix snippet path * Remove unneeded code project files * Header edit * Update dotnet-desktop-guide/net/wpf/properties/dependency-property-value-precedence.md Co-authored-by: Andy (Steve) De George <[email protected]> * Remove VB code project * Redirects Co-authored-by: Andy (Steve) De George <[email protected]> Co-authored-by: Andy De George (adegeo) <[email protected]>
25 lines
644 B
XML
25 lines
644 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
</Project>
|