mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-20 21:33:10 -07:00
Clean up project structure
This commit is contained in:
parent
278a1e714e
commit
abe4d0fd92
6 changed files with 2 additions and 66 deletions
|
@ -288,7 +288,7 @@
|
|||
<ClInclude Include="UnitConverter.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="CalculatorHistory.Cpp" />
|
||||
<ClCompile Include="CalculatorHistory.cpp" />
|
||||
<ClCompile Include="CalculatorManager.cpp" />
|
||||
<ClCompile Include="CEngine\calc.cpp" />
|
||||
<ClCompile Include="CEngine\CalcUtils.cpp" />
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Resource Files">
|
||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tga;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="CEngine">
|
||||
<UniqueIdentifier>{957a8e3c-00c7-48bc-b63c-83b2140a8251}</UniqueIdentifier>
|
||||
</Filter>
|
||||
|
@ -81,7 +77,7 @@
|
|||
<ClCompile Include="Ratpack\transh.cpp">
|
||||
<Filter>RatPack</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="CalculatorHistory.Cpp" />
|
||||
<ClCompile Include="CalculatorHistory.cpp" />
|
||||
<ClCompile Include="CalculatorManager.cpp" />
|
||||
<ClCompile Include="UnitConverter.cpp" />
|
||||
<ClCompile Include="CEngine\CalcInput.cpp">
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Resource Files">
|
||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tga;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Common">
|
||||
<UniqueIdentifier>{1daab7c4-63f6-4266-a259-f34acad66d09}</UniqueIdentifier>
|
||||
</Filter>
|
||||
|
|
|
@ -14,9 +14,6 @@
|
|||
<Filter Include="Converters">
|
||||
<UniqueIdentifier>{5a666ef7-54fb-46cc-9588-5cbcfaed3465}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="PerfTrack">
|
||||
<UniqueIdentifier>{1cba827f-63eb-4cda-8bf0-eea60190725e}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Resources">
|
||||
<UniqueIdentifier>{f9b88d9e-918b-49ac-869b-a1a380ec3201}</UniqueIdentifier>
|
||||
</Filter>
|
||||
|
|
|
@ -1,53 +0,0 @@
|
|||
<ResourceDictionary
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
|
||||
<x:Double x:Key="CaptionFontSize">12</x:Double>
|
||||
<x:Double x:Key="BodyFontSize">15</x:Double>
|
||||
<x:Double x:Key="BaseFontSize">15</x:Double>
|
||||
<x:Double x:Key="SubtitleFontSize">20</x:Double>
|
||||
<x:Double x:Key="TitleFontSize">24</x:Double>
|
||||
<x:Double x:Key="SubheaderFontSize">34</x:Double>
|
||||
<x:Double x:Key="HeaderFontSize">46</x:Double>
|
||||
|
||||
<Style x:Key="CaptionTextBlockStyle" TargetType="TextBlock">
|
||||
<Setter Property="FontSize" Value="{StaticResource CaptionFontSize}" />
|
||||
<Setter Property="LineHeight" Value="14" />
|
||||
<Setter Property="FontWeight" Value="Normal" />
|
||||
</Style>
|
||||
|
||||
<Style x:Key="BodyTextBlockStyle" TargetType="TextBlock">
|
||||
<Setter Property="FontSize" Value="{StaticResource BodyFontSize}" />
|
||||
<Setter Property="LineHeight" Value="20" />
|
||||
<Setter Property="FontWeight" Value="Normal" />
|
||||
</Style>
|
||||
|
||||
<Style x:Key="BaseTextBlockStyle" TargetType="TextBlock" BasedOn="{StaticResource BodyTextBlockStyle}">
|
||||
<Setter Property="FontWeight" Value="SemiBold" />
|
||||
</Style>
|
||||
|
||||
<Style x:Key="SubtitleTextBlockStyle" TargetType="TextBlock">
|
||||
<Setter Property="FontSize" Value="{StaticResource SubtitleFontSize}" />
|
||||
<Setter Property="LineHeight" Value="24" />
|
||||
<Setter Property="FontWeight" Value="Normal" />
|
||||
</Style>
|
||||
|
||||
<Style x:Key="TitleTextBlockStyle" TargetType="TextBlock">
|
||||
<Setter Property="FontSize" Value="{StaticResource TitleFontSize}" />
|
||||
<Setter Property="LineHeight" Value="28" />
|
||||
<Setter Property="FontWeight" Value="SemiLight" />
|
||||
</Style>
|
||||
|
||||
<Style x:Key="SubheaderTextBlockStyle" TargetType="TextBlock">
|
||||
<Setter Property="FontSize" Value="{StaticResource SubheaderFontSize}" />
|
||||
<Setter Property="LineHeight" Value="40" />
|
||||
<Setter Property="FontWeight" Value="Light" />
|
||||
</Style>
|
||||
|
||||
<Style x:Key="HeaderTextBlockStyle" TargetType="TextBlock">
|
||||
<Setter Property="FontSize" Value="{StaticResource HeaderFontSize}" />
|
||||
<Setter Property="LineHeight" Value="56" />
|
||||
<Setter Property="FontWeight" Value="Light" />
|
||||
</Style>
|
||||
|
||||
</ResourceDictionary>
|
Loading…
Add table
Add a link
Reference in a new issue