summaryrefslogtreecommitdiffstats
path: root/VegaData/VegaData.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'VegaData/VegaData.csproj')
-rw-r--r--VegaData/VegaData.csproj29
1 files changed, 29 insertions, 0 deletions
diff --git a/VegaData/VegaData.csproj b/VegaData/VegaData.csproj
new file mode 100644
index 0000000..7555e31
--- /dev/null
+++ b/VegaData/VegaData.csproj
@@ -0,0 +1,29 @@
+<Project Sdk="Microsoft.NET.Sdk.Web">
+
+ <PropertyGroup>
+ <TargetFramework>net10.0</TargetFramework>
+ <Nullable>enable</Nullable>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.9" />
+ <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.9">
+ <PrivateAssets>all</PrivateAssets>
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ </PackageReference>
+ <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.9" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <Content Include="..\.dockerignore">
+ <Link>.dockerignore</Link>
+ </Content>
+ </ItemGroup>
+
+ <ItemGroup>
+ <Folder Include="data\" />
+ </ItemGroup>
+
+</Project>