Skip to content
This repository was archived by the owner on May 27, 2023. It is now read-only.

Commit c1d8416

Browse files
committed
Updated ReadMe
1 parent 855605a commit c1d8416

File tree

4 files changed

+50
-1
lines changed

4 files changed

+50
-1
lines changed

BooleanExpressionSolver/BooleanExpressionSolver/BooleanExpressionSolver.csproj

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,22 @@
1414
<WarningLevel>4</WarningLevel>
1515
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1616
<Deterministic>true</Deterministic>
17+
<IsWebBootstrapper>false</IsWebBootstrapper>
18+
<PublishUrl>G:\GitHub\Boolean-Expression-Solver\Release\</PublishUrl>
19+
<Install>true</Install>
20+
<InstallFrom>Disk</InstallFrom>
21+
<UpdateEnabled>false</UpdateEnabled>
22+
<UpdateMode>Foreground</UpdateMode>
23+
<UpdateInterval>7</UpdateInterval>
24+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
25+
<UpdatePeriodically>false</UpdatePeriodically>
26+
<UpdateRequired>false</UpdateRequired>
27+
<MapFileExtensions>true</MapFileExtensions>
28+
<ApplicationRevision>2</ApplicationRevision>
29+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
30+
<UseApplicationTrust>false</UseApplicationTrust>
31+
<PublishWizardCompleted>true</PublishWizardCompleted>
32+
<BootstrapperEnabled>true</BootstrapperEnabled>
1733
</PropertyGroup>
1834
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1935
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -34,6 +50,21 @@
3450
<ErrorReport>prompt</ErrorReport>
3551
<WarningLevel>4</WarningLevel>
3652
</PropertyGroup>
53+
<PropertyGroup>
54+
<ManifestCertificateThumbprint>55156D986F7B5952CF9763252329FC682311E5C7</ManifestCertificateThumbprint>
55+
</PropertyGroup>
56+
<PropertyGroup>
57+
<ManifestKeyFile>BooleanExpressionSolver_TemporaryKey.pfx</ManifestKeyFile>
58+
</PropertyGroup>
59+
<PropertyGroup>
60+
<GenerateManifests>true</GenerateManifests>
61+
</PropertyGroup>
62+
<PropertyGroup>
63+
<SignManifests>true</SignManifests>
64+
</PropertyGroup>
65+
<PropertyGroup>
66+
<ApplicationIcon>icon.ico</ApplicationIcon>
67+
</PropertyGroup>
3768
<ItemGroup>
3869
<Reference Include="System" />
3970
<Reference Include="System.Data" />
@@ -86,6 +117,7 @@
86117
<Generator>ResXFileCodeGenerator</Generator>
87118
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
88119
</EmbeddedResource>
120+
<None Include="BooleanExpressionSolver_TemporaryKey.pfx" />
89121
<None Include="Properties\Settings.settings">
90122
<Generator>SettingsSingleFileGenerator</Generator>
91123
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
@@ -94,5 +126,20 @@
94126
<ItemGroup>
95127
<None Include="App.config" />
96128
</ItemGroup>
129+
<ItemGroup>
130+
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
131+
<Visible>False</Visible>
132+
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 and x64%29</ProductName>
133+
<Install>true</Install>
134+
</BootstrapperPackage>
135+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
136+
<Visible>False</Visible>
137+
<ProductName>.NET Framework 3.5 SP1</ProductName>
138+
<Install>false</Install>
139+
</BootstrapperPackage>
140+
</ItemGroup>
141+
<ItemGroup>
142+
<Resource Include="icon.ico" />
143+
</ItemGroup>
97144
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
98145
</Project>
Binary file not shown.

Images/mainMenu.png

51 KB
Loading

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Boolean Algebra Expression Solver
2-
This application is a simple boolean algebra expression solver coded in C# using WPF. The purpose of this program was to help me learn WPF as well as utilise reverse polish notation and the shunting yard algorithm. This application takes a boolean expression as an input and outputs its corresponding truth table.
2+
This application is a simple Boolean algebra expression solver coded in C# using WPF. The purpose of this program was to help me learn WPF as well as utilize reverse polish notation and the shunting yard algorithm. This application takes a Boolean expression as an input and outputs its corresponding truth table.
3+
4+
![Main Menu](Images/mainMenu.png)
35

46
## How To Use
57
1. Insert the number of terms you wish to evaluate in the "Number Of Terms" textbox

0 commit comments

Comments
 (0)