diff --git a/src/Managed.Test/Managed.Test.csproj b/src/Managed.Test/Managed.Test.csproj new file mode 100644 index 00000000..3b77fbcc --- /dev/null +++ b/src/Managed.Test/Managed.Test.csproj @@ -0,0 +1,55 @@ + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {D645F295-5FB1-4091-939F-EDBEC797F17B} + Library + Properties + MathNet.Numerics.Test + MathNet.Numerics.Test + v2.0 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + {B7CAE5F4-A23F-4438-B5BE-41226618B695} + Managed + + + + + \ No newline at end of file diff --git a/src/Managed.Test/Properties/AssemblyInfo.cs b/src/Managed.Test/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..9374df0c --- /dev/null +++ b/src/Managed.Test/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Math.NET Numerics (Test)")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Math.NET Project")] +[assembly: AssemblyProduct("Math.NET Numerics")] +[assembly: AssemblyCopyright("Copyright © Math.NET Project")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("2e405a5c-3b48-40e0-adf2-6f623b18373f")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/Managed/Managed.csproj b/src/Managed/Managed.csproj new file mode 100644 index 00000000..eb639aae --- /dev/null +++ b/src/Managed/Managed.csproj @@ -0,0 +1,49 @@ + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {B7CAE5F4-A23F-4438-B5BE-41226618B695} + Library + Properties + MathNet.Numerics + MathNet.Numerics + v2.0 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Managed/Properties/AssemblyInfo.cs b/src/Managed/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..98cdf0e1 --- /dev/null +++ b/src/Managed/Properties/AssemblyInfo.cs @@ -0,0 +1,37 @@ +using System.Reflection; +using System.Runtime.InteropServices; +using System.Resources; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Math.NET Numerics (Managed)")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Math.NET Project")] +[assembly: AssemblyProduct("Math.NET Numerics")] +[assembly: AssemblyCopyright("Copyright © Math.NET Project")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("7b66646f-f0ee-425d-9065-910d1937a2df")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: NeutralResourcesLanguageAttribute("en")] diff --git a/src/MathNet.Numerics.sln b/src/MathNet.Numerics.sln index bdf6712e..2863fd22 100644 --- a/src/MathNet.Numerics.sln +++ b/src/MathNet.Numerics.sln @@ -1,7 +1,31 @@  Microsoft Visual Studio Solution File, Format Version 10.00 # Visual Studio 2008 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Managed", "Managed\Managed.csproj", "{B7CAE5F4-A23F-4438-B5BE-41226618B695}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Native", "Native\Native.csproj", "{4FE24723-A98A-4EB6-B266-03E35967695B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Managed.Test", "Managed.Test\Managed.Test.csproj", "{D645F295-5FB1-4091-939F-EDBEC797F17B}" +EndProject Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B7CAE5F4-A23F-4438-B5BE-41226618B695}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B7CAE5F4-A23F-4438-B5BE-41226618B695}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B7CAE5F4-A23F-4438-B5BE-41226618B695}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B7CAE5F4-A23F-4438-B5BE-41226618B695}.Release|Any CPU.Build.0 = Release|Any CPU + {4FE24723-A98A-4EB6-B266-03E35967695B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4FE24723-A98A-4EB6-B266-03E35967695B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4FE24723-A98A-4EB6-B266-03E35967695B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4FE24723-A98A-4EB6-B266-03E35967695B}.Release|Any CPU.Build.0 = Release|Any CPU + {D645F295-5FB1-4091-939F-EDBEC797F17B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D645F295-5FB1-4091-939F-EDBEC797F17B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D645F295-5FB1-4091-939F-EDBEC797F17B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D645F295-5FB1-4091-939F-EDBEC797F17B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection diff --git a/src/Native/Native.csproj b/src/Native/Native.csproj new file mode 100644 index 00000000..685f76dd --- /dev/null +++ b/src/Native/Native.csproj @@ -0,0 +1,49 @@ + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {4FE24723-A98A-4EB6-B266-03E35967695B} + Library + Properties + MathNet.Numerics + MathNet.Numerics.Native + v2.0 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Native/Properties/AssemblyInfo.cs b/src/Native/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..6422ad82 --- /dev/null +++ b/src/Native/Properties/AssemblyInfo.cs @@ -0,0 +1,37 @@ +using System.Reflection; +using System.Runtime.InteropServices; +using System.Resources; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Math.NET Numerics (Native)")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Math.NET Project")] +[assembly: AssemblyProduct("Math.NET Numerics")] +[assembly: AssemblyCopyright("Copyright © Math.NET Project")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("2b6a14a7-2aee-4bdc-a95a-2f496fe06cb7")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: NeutralResourcesLanguageAttribute("en")]