Skip to content

Commit 496624c

Browse files
authored
Merge pull request #27 from clovett/modern
ModernWPF UI update
2 parents b6335fb + e57ccac commit 496624c

File tree

169 files changed

+4880
-9580
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+4880
-9580
lines changed

Source/WPF/FindUnusedStyles.cmd

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
@echo off
2+
cd "%~dp0"
3+
if "%MODERNWPF%" == "" goto :nomodernwpf
4+
if not exist "%MODERNWPF%" goto :nomodernwpf
5+
if not exist FindUnusedStyles\bin\Debug\net5.0-windows\FindUnusedStyles.exe msbuild FindUnusedStyles\FindUnusedStyles.csproj
6+
FindUnusedStyles\bin\Debug\net5.0-windows\FindUnusedStyles.exe --import "%MODERNWPF%\ModernWpf\Styles" --import "%MODERNWPF%\ModernWpf\ThemeResources" .
7+
8+
goto :eof
9+
10+
:nomodernwpf
11+
echo "Please set a MODERNWPF environment pointing to a clone of [email protected]:Kinnara/ModernWpf.git"
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net5.0-windows</TargetFramework>
6+
<UseWPF>true</UseWPF>
7+
</PropertyGroup>
8+
9+
</Project>

0 commit comments

Comments
 (0)