Skip to content

Commit 8e48a09

Browse files
committed
Project has been renamed.
Added compilation test.
1 parent c8c715e commit 8e48a09

Some content is hidden

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

41 files changed

+172
-54
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 2012
4-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MathFunctions", "MathFunctions\MathFunctions.csproj", "{AE661528-AFC9-4CCA-9ABD-C173E9779085}"
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MathExpressions.NET", "MathFunctions\MathExpressions.NET.csproj", "{AE661528-AFC9-4CCA-9ABD-C173E9779085}"
55
EndProject
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MathFunctions.GUI", "MathFunctions.GUI\MathFunctions.GUI.csproj", "{2C0616FA-AAC1-4F22-9655-731F308FE4F2}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MathExpressions.NET.GUI", "MathFunctions.GUI\MathExpressions.NET.GUI.csproj", "{2C0616FA-AAC1-4F22-9655-731F308FE4F2}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Dependencies", "Dependencies", "{59BB7BFA-F088-41EB-AA54-0549D5DB1A2E}"
99
ProjectSection(SolutionItems) = preProject
@@ -17,9 +17,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Dependencies", "Dependencie
1717
Dependencies\ZedGraph.dll = Dependencies\ZedGraph.dll
1818
EndProjectSection
1919
EndProject
20-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MathFunctions.Tests", "MathFunctions.Tests\MathFunctions.Tests.csproj", "{BF78CC00-AB67-4D51-8B47-5A6DA94984AC}"
20+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MathExpressions.NET.Tests", "MathFunctions.Tests\MathExpressions.NET.Tests.csproj", "{BF78CC00-AB67-4D51-8B47-5A6DA94984AC}"
2121
EndProject
22-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MathFunctions.Benchmarks.GUI", "MathFunctions.Benchmarks.GUI\MathFunctions.Benchmarks.GUI.csproj", "{E48B7E84-C183-423B-8E83-5BBF3CB5DE0B}"
22+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MathExpressions.NET.Benchmarks.GUI", "MathFunctions.Benchmarks.GUI\MathExpressions.NET.Benchmarks.GUI.csproj", "{E48B7E84-C183-423B-8E83-5BBF3CB5DE0B}"
2323
EndProject
2424
Global
2525
GlobalSection(SolutionConfigurationPlatforms) = preSolution

MathFunctions.Benchmarks.GUI/MathFunctions.Benchmarks.GUI.csproj renamed to MathFunctions.Benchmarks.GUI/MathExpressions.NET.Benchmarks.GUI.csproj

File renamed without changes.

MathFunctions.GUI/MathFunctions.GUI.csproj renamed to MathFunctions.GUI/MathExpressions.NET.GUI.csproj

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<ProjectGuid>{2C0616FA-AAC1-4F22-9655-731F308FE4F2}</ProjectGuid>
99
<OutputType>WinExe</OutputType>
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>MathFunctions.GUI</RootNamespace>
11+
<RootNamespace>MathExpressions.NET.GUI</RootNamespace>
1212
<AssemblyName>MathFunctions.GUI</AssemblyName>
1313
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1414
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
@@ -81,16 +81,21 @@
8181
<Generator>SettingsSingleFileGenerator</Generator>
8282
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
8383
</None>
84+
<Compile Include="Properties\Resources1.Designer.cs">
85+
<AutoGen>True</AutoGen>
86+
<DesignTime>True</DesignTime>
87+
<DependentUpon>Resources.resx</DependentUpon>
88+
</Compile>
8489
<Compile Include="Properties\Settings.Designer.cs">
8590
<AutoGen>True</AutoGen>
8691
<DependentUpon>Settings.settings</DependentUpon>
8792
<DesignTimeSharedInput>True</DesignTimeSharedInput>
8893
</Compile>
8994
</ItemGroup>
9095
<ItemGroup>
91-
<ProjectReference Include="..\MathFunctions\MathFunctions.csproj">
96+
<ProjectReference Include="..\MathFunctions\MathExpressions.NET.csproj">
9297
<Project>{AE661528-AFC9-4CCA-9ABD-C173E9779085}</Project>
93-
<Name>MathFunctions</Name>
98+
<Name>MathExpressions.NET</Name>
9499
</ProjectReference>
95100
</ItemGroup>
96101
<ItemGroup>

MathFunctions.GUI/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Linq;
44
using System.Windows.Forms;
55

6-
namespace MathFunctions.GUI
6+
namespace MathExpressions.NET.GUI
77
{
88
static class Program
99
{

MathFunctions.GUI/Properties/Resources.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MathFunctions.GUI/Properties/Resources1.Designer.cs

Lines changed: 63 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MathFunctions.GUI/Properties/Settings.Designer.cs

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MathFunctions.GUI/frmMain.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MathFunctions.GUI/frmMain.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
using System.Windows.Forms;
99
using System.IO;
1010
using GOLD;
11-
using MathFunctions.GUI.Properties;
11+
using MathExpressions.NET.GUI.Properties;
1212
using System.Globalization;
1313
using System.Threading;
1414

15-
namespace MathFunctions.GUI
15+
namespace MathExpressions.NET.GUI
1616
{
1717
public partial class frmMain : Form
1818
{

MathFunctions.Tests/MathFunctions.Tests.csproj renamed to MathFunctions.Tests/MathExpressions.NET.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<ProjectGuid>{BF78CC00-AB67-4D51-8B47-5A6DA94984AC}</ProjectGuid>
99
<OutputType>Library</OutputType>
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>MathFunctions.Tests</RootNamespace>
11+
<RootNamespace>MathExpressions.NET.Tests</RootNamespace>
1212
<AssemblyName>MathFunctions.Tests</AssemblyName>
1313
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
@@ -59,9 +59,9 @@
5959
<Compile Include="WolframAlphaUtils.cs" />
6060
</ItemGroup>
6161
<ItemGroup>
62-
<ProjectReference Include="..\MathFunctions\MathFunctions.csproj">
62+
<ProjectReference Include="..\MathFunctions\MathExpressions.NET.csproj">
6363
<Project>{AE661528-AFC9-4CCA-9ABD-C173E9779085}</Project>
64-
<Name>MathFunctions</Name>
64+
<Name>MathExpressions.NET</Name>
6565
</ProjectReference>
6666
</ItemGroup>
6767
<ItemGroup>

0 commit comments

Comments
 (0)