daily_planner.csproj 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.props" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" />
  4. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  5. <PropertyGroup>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{02343FD2-31A5-45AC-B428-3557D1EA70A7}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <RootNamespace>daily_planner</RootNamespace>
  11. <AssemblyName>daily_planner</AssemblyName>
  12. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <WarningLevel>4</WarningLevel>
  16. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  17. <Deterministic>true</Deterministic>
  18. <NuGetPackageImportStamp>
  19. </NuGetPackageImportStamp>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <PlatformTarget>AnyCPU</PlatformTarget>
  23. <DebugSymbols>true</DebugSymbols>
  24. <DebugType>full</DebugType>
  25. <Optimize>false</Optimize>
  26. <OutputPath>bin\Debug\</OutputPath>
  27. <DefineConstants>DEBUG;TRACE</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <PlatformTarget>AnyCPU</PlatformTarget>
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>bin\Release\</OutputPath>
  36. <DefineConstants>TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  42. <HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll</HintPath>
  43. </Reference>
  44. <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  45. <HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll</HintPath>
  46. </Reference>
  47. <Reference Include="System" />
  48. <Reference Include="System.ComponentModel.DataAnnotations" />
  49. <Reference Include="System.Data" />
  50. <Reference Include="System.Runtime.Serialization" />
  51. <Reference Include="System.Security" />
  52. <Reference Include="System.Xml" />
  53. <Reference Include="Microsoft.CSharp" />
  54. <Reference Include="System.Core" />
  55. <Reference Include="System.Xml.Linq" />
  56. <Reference Include="System.Data.DataSetExtensions" />
  57. <Reference Include="System.Net.Http" />
  58. <Reference Include="System.Xaml">
  59. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  60. </Reference>
  61. <Reference Include="WindowsBase" />
  62. <Reference Include="PresentationCore" />
  63. <Reference Include="PresentationFramework" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <ApplicationDefinition Include="App.xaml">
  67. <Generator>MSBuild:Compile</Generator>
  68. <SubType>Designer</SubType>
  69. </ApplicationDefinition>
  70. <Compile Include="Model1.cs">
  71. <AutoGen>True</AutoGen>
  72. <DesignTime>True</DesignTime>
  73. <DependentUpon>Model1.tt</DependentUpon>
  74. </Compile>
  75. <Compile Include="Tasks.cs">
  76. <DependentUpon>Model1.tt</DependentUpon>
  77. </Compile>
  78. <Page Include="MainWindow.xaml">
  79. <Generator>MSBuild:Compile</Generator>
  80. <SubType>Designer</SubType>
  81. </Page>
  82. <Compile Include="App.xaml.cs">
  83. <DependentUpon>App.xaml</DependentUpon>
  84. <SubType>Code</SubType>
  85. </Compile>
  86. <Compile Include="MainWindow.xaml.cs">
  87. <DependentUpon>MainWindow.xaml</DependentUpon>
  88. <SubType>Code</SubType>
  89. </Compile>
  90. </ItemGroup>
  91. <ItemGroup>
  92. <Compile Include="Model1.Context.cs">
  93. <AutoGen>True</AutoGen>
  94. <DesignTime>True</DesignTime>
  95. <DependentUpon>Model1.Context.tt</DependentUpon>
  96. </Compile>
  97. <Compile Include="Model1.Designer.cs">
  98. <AutoGen>True</AutoGen>
  99. <DesignTime>True</DesignTime>
  100. <DependentUpon>Model1.edmx</DependentUpon>
  101. </Compile>
  102. <Compile Include="Properties\AssemblyInfo.cs">
  103. <SubType>Code</SubType>
  104. </Compile>
  105. <Compile Include="Properties\Resources.Designer.cs">
  106. <AutoGen>True</AutoGen>
  107. <DesignTime>True</DesignTime>
  108. <DependentUpon>Resources.resx</DependentUpon>
  109. </Compile>
  110. <Compile Include="Properties\Settings.Designer.cs">
  111. <AutoGen>True</AutoGen>
  112. <DependentUpon>Settings.settings</DependentUpon>
  113. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  114. </Compile>
  115. <EmbeddedResource Include="Properties\Resources.resx">
  116. <Generator>ResXFileCodeGenerator</Generator>
  117. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  118. </EmbeddedResource>
  119. <EntityDeploy Include="Model1.edmx">
  120. <Generator>EntityModelCodeGenerator</Generator>
  121. <LastGenOutput>Model1.Designer.cs</LastGenOutput>
  122. </EntityDeploy>
  123. <None Include="Model1.edmx.diagram">
  124. <DependentUpon>Model1.edmx</DependentUpon>
  125. </None>
  126. <Resource Include="Montserrat-Light.otf" />
  127. <Resource Include="Montserrat-Medium.otf" />
  128. <None Include="packages.config" />
  129. <None Include="Properties\Settings.settings">
  130. <Generator>SettingsSingleFileGenerator</Generator>
  131. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  132. </None>
  133. </ItemGroup>
  134. <ItemGroup>
  135. <None Include="App.config" />
  136. </ItemGroup>
  137. <ItemGroup>
  138. <Content Include="Model1.Context.tt">
  139. <Generator>TextTemplatingFileGenerator</Generator>
  140. <LastGenOutput>Model1.Context.cs</LastGenOutput>
  141. <DependentUpon>Model1.edmx</DependentUpon>
  142. </Content>
  143. <Content Include="Model1.tt">
  144. <Generator>TextTemplatingFileGenerator</Generator>
  145. <DependentUpon>Model1.edmx</DependentUpon>
  146. <LastGenOutput>Model1.cs</LastGenOutput>
  147. </Content>
  148. <Resource Include="cats.png" />
  149. <Resource Include="pen.png" />
  150. </ItemGroup>
  151. <ItemGroup>
  152. <Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
  153. </ItemGroup>
  154. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  155. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  156. <PropertyGroup>
  157. <ErrorText>Данный проект ссылается на пакеты NuGet, отсутствующие на этом компьютере. Используйте восстановление пакетов NuGet, чтобы скачать их. Дополнительную информацию см. по адресу: http://go.microsoft.com/fwlink/?LinkID=322105. Отсутствует следующий файл: {0}.</ErrorText>
  158. </PropertyGroup>
  159. <Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.props'))" />
  160. <Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.targets'))" />
  161. </Target>
  162. <Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.targets" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" />
  163. </Project>