parent
b36ad8fd09
commit
937fbc4bc0
@ -0,0 +1,24 @@ |
|||||||
|
<Project Sdk="Microsoft.NET.Sdk"> |
||||||
|
|
||||||
|
<PropertyGroup> |
||||||
|
<OutputType>Exe</OutputType> |
||||||
|
<TargetFramework>net6.0</TargetFramework> |
||||||
|
<ImplicitUsings>enable</ImplicitUsings> |
||||||
|
<Nullable>enable</Nullable> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
<ItemGroup> |
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.13" /> |
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.13"> |
||||||
|
<PrivateAssets>all</PrivateAssets> |
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
||||||
|
</PackageReference> |
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.13" /> |
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.13"> |
||||||
|
<PrivateAssets>all</PrivateAssets> |
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
||||||
|
</PackageReference> |
||||||
|
<PackageReference Include="MySql.EntityFrameworkCore" Version="7.0.5" /> |
||||||
|
</ItemGroup> |
||||||
|
|
||||||
|
</Project> |
@ -0,0 +1,10 @@ |
|||||||
|
using System.Windows; |
||||||
|
|
||||||
|
[assembly: ThemeInfo( |
||||||
|
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located |
||||||
|
//(used if a resource is not found in the page, |
||||||
|
// or application resource dictionaries) |
||||||
|
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located |
||||||
|
//(used if a resource is not found in the page, |
||||||
|
// app, or any theme specific resource dictionaries) |
||||||
|
)] |
Loading…
Reference in new issue