From 9ece56f15cb6004a8239ab0af5048bc335cbbff4 Mon Sep 17 00:00:00 2001 From: Russ Kollmansberger Date: Fri, 9 Aug 2024 08:36:29 -0500 Subject: [PATCH] Add project files. --- Class1.cs | 12 +++++++++ DbMigrate.csproj | 54 ++++++++++++++++++++++++++++++++++++++ DbMigrate.sln | 25 ++++++++++++++++++ Properties/AssemblyInfo.cs | 36 +++++++++++++++++++++++++ 4 files changed, 127 insertions(+) create mode 100644 Class1.cs create mode 100644 DbMigrate.csproj create mode 100644 DbMigrate.sln create mode 100644 Properties/AssemblyInfo.cs diff --git a/Class1.cs b/Class1.cs new file mode 100644 index 0000000..5edbcbd --- /dev/null +++ b/Class1.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DbMigrate +{ + public class Class1 + { + } +} diff --git a/DbMigrate.csproj b/DbMigrate.csproj new file mode 100644 index 0000000..03eeaa1 --- /dev/null +++ b/DbMigrate.csproj @@ -0,0 +1,54 @@ + + + + + Debug + AnyCPU + a4a58207-cf8c-46fd-9749-3d4d8816e11a + Library + Properties + DbMigrate + DbMigrate + v4.7.2 + 512 + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/DbMigrate.sln b/DbMigrate.sln new file mode 100644 index 0000000..7972a85 --- /dev/null +++ b/DbMigrate.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.35027.167 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DbMigrate", "DbMigrate.csproj", "{A4A58207-CF8C-46FD-9749-3D4D8816E11A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A4A58207-CF8C-46FD-9749-3D4D8816E11A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A4A58207-CF8C-46FD-9749-3D4D8816E11A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A4A58207-CF8C-46FD-9749-3D4D8816E11A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A4A58207-CF8C-46FD-9749-3D4D8816E11A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {0982AFF1-3402-4656-B792-7E92562C3201} + EndGlobalSection +EndGlobal diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..f021c77 --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +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("DbMigrate")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("DbMigrate")] +[assembly: AssemblyCopyright("Copyright © 2024")] +[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("a4a58207-cf8c-46fd-9749-3d4d8816e11a")] + +// 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")]