diff --git a/DbFirst.sln b/DbFirst.sln new file mode 100644 index 0000000..a9a2cb7 --- /dev/null +++ b/DbFirst.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28010.2048 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DbFirst", "DbFirst\DbFirst.csproj", "{2EF21C21-8494-48C2-B37D-E00CAA0ECA3A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2EF21C21-8494-48C2-B37D-E00CAA0ECA3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2EF21C21-8494-48C2-B37D-E00CAA0ECA3A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2EF21C21-8494-48C2-B37D-E00CAA0ECA3A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2EF21C21-8494-48C2-B37D-E00CAA0ECA3A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {80A4716B-30D6-4A7F-9F7C-32E040F3DB60} + EndGlobalSection +EndGlobal diff --git a/DbFirst/App.config b/DbFirst/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/DbFirst/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/DbFirst/DbFirst.csproj b/DbFirst/DbFirst.csproj new file mode 100644 index 0000000..084e250 --- /dev/null +++ b/DbFirst/DbFirst.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {2EF21C21-8494-48C2-B37D-E00CAA0ECA3A} + Exe + DbFirst + DbFirst + v4.6.1 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/DbFirst/Program.cs b/DbFirst/Program.cs new file mode 100644 index 0000000..bee483e --- /dev/null +++ b/DbFirst/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DbFirst +{ + class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/DbFirst/Properties/AssemblyInfo.cs b/DbFirst/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..028dcd4 --- /dev/null +++ b/DbFirst/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("DbFirst")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("DbFirst")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[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("2ef21c21-8494-48c2-b37d-e00caa0eca3a")] + +// 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")]