Files
SqlEntityFrameWork/CodeFirstExistingDatabase/CodeFirstExistingDatabase.csproj

165 lines
8.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{B7181C3F-54FF-45F2-9BFF-DE52A88EF3EB}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>CodeFirstExistingDatabase</RootNamespace>
<AssemblyName>CodeFirstExistingDatabase</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll</HintPath>
</Reference>
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Security" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Author.cs" />
<Compile Include="Course.cs" />
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\201911090857223_InitialModel.cs" />
<Compile Include="Migrations\201911090857223_InitialModel.Designer.cs">
<DependentUpon>201911090857223_InitialModel.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\201911122151493_AddCategoriesTable.cs" />
<Compile Include="Migrations\201911122151493_AddCategoriesTable.Designer.cs">
<DependentUpon>201911122151493_AddCategoriesTable.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\201911122154224_AddCategoriesTable1.cs" />
<Compile Include="Migrations\201911122154224_AddCategoriesTable1.Designer.cs">
<DependentUpon>201911122154224_AddCategoriesTable1.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\201911122203311_AddCategoryColumnToCoursesTable.cs" />
<Compile Include="Migrations\201911122203311_AddCategoryColumnToCoursesTable.Designer.cs">
<DependentUpon>201911122203311_AddCategoryColumnToCoursesTable.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\201911122214252_AddDatePublishedColumnToCoursesTable.cs" />
<Compile Include="Migrations\201911122214252_AddDatePublishedColumnToCoursesTable.Designer.cs">
<DependentUpon>201911122214252_AddDatePublishedColumnToCoursesTable.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\201911122218222_RenameTitleColumnToNameInCoursesTable.cs" />
<Compile Include="Migrations\201911122218222_RenameTitleColumnToNameInCoursesTable.Designer.cs">
<DependentUpon>201911122218222_RenameTitleColumnToNameInCoursesTable.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\201911122233106_DeleteDatePublishedColumnInCoursesTable.cs" />
<Compile Include="Migrations\201911122233106_DeleteDatePublishedColumnInCoursesTable.Designer.cs">
<DependentUpon>201911122233106_DeleteDatePublishedColumnInCoursesTable.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\201911122236570_DeleteCategoryColumnFromCoursesTable.cs" />
<Compile Include="Migrations\201911122236570_DeleteCategoryColumnFromCoursesTable.Designer.cs">
<DependentUpon>201911122236570_DeleteCategoryColumnFromCoursesTable.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\201911122240554_DeleteCategoriesTable.cs" />
<Compile Include="Migrations\201911122240554_DeleteCategoriesTable.Designer.cs">
<DependentUpon>201911122240554_DeleteCategoriesTable.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\201911131933044_PopulateCategoriesTable.cs" />
<Compile Include="Migrations\201911131933044_PopulateCategoriesTable.Designer.cs">
<DependentUpon>201911131933044_PopulateCategoriesTable.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\Configuration.cs" />
<Compile Include="PlutoContext.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Tag.cs" />
<EmbeddedResource Include="Migrations\201911090857223_InitialModel.resx">
<DependentUpon>201911090857223_InitialModel.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Migrations\201911122151493_AddCategoriesTable.resx">
<DependentUpon>201911122151493_AddCategoriesTable.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Migrations\201911122154224_AddCategoriesTable1.resx">
<DependentUpon>201911122154224_AddCategoriesTable1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Migrations\201911122203311_AddCategoryColumnToCoursesTable.resx">
<DependentUpon>201911122203311_AddCategoryColumnToCoursesTable.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Migrations\201911122214252_AddDatePublishedColumnToCoursesTable.resx">
<DependentUpon>201911122214252_AddDatePublishedColumnToCoursesTable.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Migrations\201911122218222_RenameTitleColumnToNameInCoursesTable.resx">
<DependentUpon>201911122218222_RenameTitleColumnToNameInCoursesTable.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Migrations\201911122233106_DeleteDatePublishedColumnInCoursesTable.resx">
<DependentUpon>201911122233106_DeleteDatePublishedColumnInCoursesTable.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Migrations\201911122236570_DeleteCategoryColumnFromCoursesTable.resx">
<DependentUpon>201911122236570_DeleteCategoryColumnFromCoursesTable.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Migrations\201911122240554_DeleteCategoriesTable.resx">
<DependentUpon>201911122240554_DeleteCategoriesTable.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Migrations\201911131933044_PopulateCategoriesTable.resx">
<DependentUpon>201911131933044_PopulateCategoriesTable.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>