Vitorm.Data.Console.csproj 614 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\..\src\Vitorm.Data\Vitorm.Data.csproj" />
  10. <ProjectReference Include="..\..\src\Vitorm.Sqlite\Vitorm.Sqlite.csproj" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <None Update="appsettings.json">
  14. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  15. </None>
  16. </ItemGroup>
  17. </Project>