commit
ae29bef471
@ -0,0 +1,64 @@
|
|||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: default
|
||||||
|
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:6.0
|
||||||
|
volumes:
|
||||||
|
- name: docs
|
||||||
|
path: /docs
|
||||||
|
commands:
|
||||||
|
- cd Sources/
|
||||||
|
- dotnet restore ApiSolution.sln
|
||||||
|
- dotnet build ApiSolution.sln -c Release --no-restore
|
||||||
|
- dotnet publish ApiSolution.sln -c Release --no-restore -o CI_PROJECT_DIR/build/release
|
||||||
|
|
||||||
|
- name: tests
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:6.0
|
||||||
|
commands:
|
||||||
|
- cd Sources/
|
||||||
|
- dotnet restore ApiSolution.sln
|
||||||
|
- dotnet test ApiSolution.sln --no-restore
|
||||||
|
depends_on:
|
||||||
|
- build
|
||||||
|
|
||||||
|
- name: docker-build-and-push
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
dockerfile: Sources/Api/Dockerfile
|
||||||
|
context: Sources/
|
||||||
|
registry: hub.codefirst.iut.uca.fr
|
||||||
|
repo: hub.codefirst.iut.uca.fr/R-Dash/Serveur_R-Dash
|
||||||
|
username:
|
||||||
|
from_secret: SECRET_REGISTRY_USERNAME
|
||||||
|
password:
|
||||||
|
from_secret: SECRET_REGISTRY_PASSWORD
|
||||||
|
depends_on:
|
||||||
|
- tests
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
- master
|
||||||
|
|
||||||
|
- name: deploy-container
|
||||||
|
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest
|
||||||
|
environment:
|
||||||
|
IMAGENAME: hub.codefirst.iut.uca.fr/R-Dash/Serveur_R-Dash:latest
|
||||||
|
CONTAINERNAME: R-Dash_Container
|
||||||
|
COMMAND: create
|
||||||
|
OVERWRITE: true
|
||||||
|
ADMINS: enzojolys
|
||||||
|
depends_on:
|
||||||
|
- docker-build-and-push
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
- master
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: docs
|
||||||
|
temp: {}
|
@ -0,0 +1,25 @@
|
|||||||
|
**/.classpath
|
||||||
|
**/.dockerignore
|
||||||
|
**/.env
|
||||||
|
**/.git
|
||||||
|
**/.gitignore
|
||||||
|
**/.project
|
||||||
|
**/.settings
|
||||||
|
**/.toolstarget
|
||||||
|
**/.vs
|
||||||
|
**/.vscode
|
||||||
|
**/*.*proj.user
|
||||||
|
**/*.dbmdl
|
||||||
|
**/*.jfm
|
||||||
|
**/azds.yaml
|
||||||
|
**/bin
|
||||||
|
**/charts
|
||||||
|
**/docker-compose*
|
||||||
|
**/Dockerfile*
|
||||||
|
**/node_modules
|
||||||
|
**/npm-debug.log
|
||||||
|
**/obj
|
||||||
|
**/secrets.dev.yaml
|
||||||
|
**/values.dev.yaml
|
||||||
|
LICENSE
|
||||||
|
README.md
|
@ -0,0 +1,162 @@
|
|||||||
|
build/
|
||||||
|
*.suo
|
||||||
|
*.user
|
||||||
|
_ReSharper.*/
|
||||||
|
*.sdf
|
||||||
|
bin/
|
||||||
|
obj/
|
||||||
|
Debug/
|
||||||
|
Release/
|
||||||
|
*.opensdf
|
||||||
|
*.tlog
|
||||||
|
*.log
|
||||||
|
TestResult.xml
|
||||||
|
*.VisualState.xml
|
||||||
|
Version.cs
|
||||||
|
Version.h
|
||||||
|
Version.cpp
|
||||||
|
# Xcode
|
||||||
|
!**/*.xcodeproj
|
||||||
|
!**/*.pbxproj
|
||||||
|
!**/*.xcworkspacedata
|
||||||
|
!**/*.xcsettings
|
||||||
|
!**/*.xcscheme
|
||||||
|
*.pbxuser
|
||||||
|
!default.pbxuser
|
||||||
|
*.mode1v3
|
||||||
|
!default.mode1v3
|
||||||
|
*.mode2v3
|
||||||
|
!default.mode2v3
|
||||||
|
*.perspectivev3
|
||||||
|
!default.perspectivev3
|
||||||
|
xcuserdata
|
||||||
|
*.xccheckout
|
||||||
|
*.moved-aside
|
||||||
|
DerivedData
|
||||||
|
*.hmap
|
||||||
|
*.ipa
|
||||||
|
*.xcuserstate
|
||||||
|
project.xcworkspace
|
||||||
|
**/.xcode.env.local
|
||||||
|
.expo
|
||||||
|
.yarn
|
||||||
|
# Gradle
|
||||||
|
/build/
|
||||||
|
/packages/react-native-gradle-plugin/build/
|
||||||
|
/packages/rn-tester/build
|
||||||
|
/packages/rn-tester/android/app/.cxx/
|
||||||
|
/packages/rn-tester/android/app/build/
|
||||||
|
/packages/rn-tester/android/app/gradle/
|
||||||
|
/packages/rn-tester/android/app/gradlew
|
||||||
|
/packages/rn-tester/android/app/gradlew.bat
|
||||||
|
/ReactAndroid/build/
|
||||||
|
/ReactAndroid/.cxx/
|
||||||
|
/ReactAndroid/gradle/
|
||||||
|
/ReactAndroid/gradlew
|
||||||
|
/ReactAndroid/gradlew.bat
|
||||||
|
/ReactAndroid/external-artifacts/build/
|
||||||
|
/ReactAndroid/external-artifacts/artifacts/
|
||||||
|
/ReactAndroid/hermes-engine/build/
|
||||||
|
/ReactAndroid/hermes-engine/.cxx/
|
||||||
|
/template/android/app/build/
|
||||||
|
/template/android/build/
|
||||||
|
|
||||||
|
# Buck
|
||||||
|
.buckd
|
||||||
|
buck-out
|
||||||
|
/.lsp.buckd
|
||||||
|
/.lsp-buck-out
|
||||||
|
/ReactAndroid/src/main/jni/prebuilt/lib/
|
||||||
|
/ReactAndroid/src/main/gen
|
||||||
|
|
||||||
|
# Android Studio
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
.classpath
|
||||||
|
|
||||||
|
# Watchman
|
||||||
|
.watchmanconfig
|
||||||
|
|
||||||
|
# Android
|
||||||
|
.idea
|
||||||
|
.gradle
|
||||||
|
local.properties
|
||||||
|
*.iml
|
||||||
|
/android/*
|
||||||
|
!/android/README.md
|
||||||
|
|
||||||
|
# Node
|
||||||
|
node_modules
|
||||||
|
*.log
|
||||||
|
.nvm
|
||||||
|
package-lock.json
|
||||||
|
|
||||||
|
# OS X
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Test generated files
|
||||||
|
/ReactAndroid/src/androidTest/assets/AndroidTestBundle.js
|
||||||
|
*.js.meta
|
||||||
|
|
||||||
|
/coverage
|
||||||
|
/third-party
|
||||||
|
|
||||||
|
# Test Reports
|
||||||
|
/reports
|
||||||
|
|
||||||
|
# Stack Dumps generated when programs crash (Ex. bash.exe.stackdump on Win)
|
||||||
|
*.stackdump
|
||||||
|
|
||||||
|
# Root dir shouldn't have Xcode project
|
||||||
|
/*.xcodeproj
|
||||||
|
|
||||||
|
# ReactCommon subdir shouldn't have Xcode project
|
||||||
|
/ReactCommon/**/*.xcodeproj
|
||||||
|
|
||||||
|
# Libs that shouldn't have Xcode project
|
||||||
|
/Libraries/FBLazyVector/**/*.xcodeproj
|
||||||
|
/Libraries/RCTRequired/**/*.xcodeproj
|
||||||
|
/React/CoreModules/**/*.xcodeproj
|
||||||
|
/React/FBReactNativeSpec/**/*.xcodeproj
|
||||||
|
/packages/react-native-codegen/**/*.xcodeproj
|
||||||
|
|
||||||
|
# Ruby Gems (Bundler)
|
||||||
|
/vendor
|
||||||
|
/template/vendor
|
||||||
|
.ruby-version
|
||||||
|
/**/.ruby-version
|
||||||
|
|
||||||
|
# iOS / CocoaPods
|
||||||
|
/template/ios/build/
|
||||||
|
/template/ios/Pods/
|
||||||
|
/template/ios/Podfile.lock
|
||||||
|
/packages/rn-tester/Gemfile.lock
|
||||||
|
|
||||||
|
# Ignore RNTester specific Pods, but keep the __offline_mirrors__ here.
|
||||||
|
/packages/rn-tester/Pods/*
|
||||||
|
!/packages/rn-tester/Pods/__offline_mirrors_hermes__
|
||||||
|
!/packages/rn-tester/Pods/__offline_mirrors_jsc__
|
||||||
|
|
||||||
|
# @react-native/codegen
|
||||||
|
/React/FBReactNativeSpec/FBReactNativeSpec
|
||||||
|
/packages/react-native-codegen/lib
|
||||||
|
/packages/react-native-codegen/tmp/
|
||||||
|
/ReactCommon/react/renderer/components/rncore/
|
||||||
|
/packages/rn-tester/NativeModuleExample/ScreenshotManagerSpec*
|
||||||
|
/**/RCTThirdPartyFabricComponentsProvider.*
|
||||||
|
|
||||||
|
|
||||||
|
# Additional SDKs
|
||||||
|
/sdks/download
|
||||||
|
/sdks/hermes
|
||||||
|
/sdks/hermesc
|
||||||
|
|
||||||
|
# Visual studio
|
||||||
|
.vscode
|
||||||
|
.vs
|
||||||
|
|
||||||
|
# Android memory profiler files
|
||||||
|
*.hprof
|
||||||
|
|
||||||
|
# Temporary files created by Metro to check the health of the file watcher
|
||||||
|
.metro-health-check*
|
@ -0,0 +1,145 @@
|
|||||||
|
# Xcode
|
||||||
|
!**/*.xcodeproj
|
||||||
|
!**/*.pbxproj
|
||||||
|
!**/*.xcworkspacedata
|
||||||
|
!**/*.xcsettings
|
||||||
|
!**/*.xcscheme
|
||||||
|
*.pbxuser
|
||||||
|
!default.pbxuser
|
||||||
|
*.mode1v3
|
||||||
|
!default.mode1v3
|
||||||
|
*.mode2v3
|
||||||
|
!default.mode2v3
|
||||||
|
*.perspectivev3
|
||||||
|
!default.perspectivev3
|
||||||
|
xcuserdata
|
||||||
|
*.xccheckout
|
||||||
|
*.moved-aside
|
||||||
|
DerivedData
|
||||||
|
*.hmap
|
||||||
|
*.ipa
|
||||||
|
*.xcuserstate
|
||||||
|
project.xcworkspace
|
||||||
|
**/.xcode.env.local
|
||||||
|
.expo
|
||||||
|
.yarn
|
||||||
|
# Gradle
|
||||||
|
/build/
|
||||||
|
/packages/react-native-gradle-plugin/build/
|
||||||
|
/packages/rn-tester/build
|
||||||
|
/packages/rn-tester/android/app/.cxx/
|
||||||
|
/packages/rn-tester/android/app/build/
|
||||||
|
/packages/rn-tester/android/app/gradle/
|
||||||
|
/packages/rn-tester/android/app/gradlew
|
||||||
|
/packages/rn-tester/android/app/gradlew.bat
|
||||||
|
/ReactAndroid/build/
|
||||||
|
/ReactAndroid/.cxx/
|
||||||
|
/ReactAndroid/gradle/
|
||||||
|
/ReactAndroid/gradlew
|
||||||
|
/ReactAndroid/gradlew.bat
|
||||||
|
/ReactAndroid/external-artifacts/build/
|
||||||
|
/ReactAndroid/external-artifacts/artifacts/
|
||||||
|
/ReactAndroid/hermes-engine/build/
|
||||||
|
/ReactAndroid/hermes-engine/.cxx/
|
||||||
|
/template/android/app/build/
|
||||||
|
/template/android/build/
|
||||||
|
|
||||||
|
# Buck
|
||||||
|
.buckd
|
||||||
|
buck-out
|
||||||
|
/.lsp.buckd
|
||||||
|
/.lsp-buck-out
|
||||||
|
/ReactAndroid/src/main/jni/prebuilt/lib/
|
||||||
|
/ReactAndroid/src/main/gen
|
||||||
|
|
||||||
|
# Android Studio
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
.classpath
|
||||||
|
|
||||||
|
# Watchman
|
||||||
|
.watchmanconfig
|
||||||
|
|
||||||
|
# Android
|
||||||
|
.idea
|
||||||
|
.gradle
|
||||||
|
local.properties
|
||||||
|
*.iml
|
||||||
|
/android/*
|
||||||
|
!/android/README.md
|
||||||
|
|
||||||
|
# Node
|
||||||
|
node_modules
|
||||||
|
*.log
|
||||||
|
.nvm
|
||||||
|
package-lock.json
|
||||||
|
|
||||||
|
# OS X
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Test generated files
|
||||||
|
/ReactAndroid/src/androidTest/assets/AndroidTestBundle.js
|
||||||
|
*.js.meta
|
||||||
|
|
||||||
|
/coverage
|
||||||
|
/third-party
|
||||||
|
|
||||||
|
# Test Reports
|
||||||
|
/reports
|
||||||
|
|
||||||
|
# Stack Dumps generated when programs crash (Ex. bash.exe.stackdump on Win)
|
||||||
|
*.stackdump
|
||||||
|
|
||||||
|
# Root dir shouldn't have Xcode project
|
||||||
|
/*.xcodeproj
|
||||||
|
|
||||||
|
# ReactCommon subdir shouldn't have Xcode project
|
||||||
|
/ReactCommon/**/*.xcodeproj
|
||||||
|
|
||||||
|
# Libs that shouldn't have Xcode project
|
||||||
|
/Libraries/FBLazyVector/**/*.xcodeproj
|
||||||
|
/Libraries/RCTRequired/**/*.xcodeproj
|
||||||
|
/React/CoreModules/**/*.xcodeproj
|
||||||
|
/React/FBReactNativeSpec/**/*.xcodeproj
|
||||||
|
/packages/react-native-codegen/**/*.xcodeproj
|
||||||
|
|
||||||
|
# Ruby Gems (Bundler)
|
||||||
|
/vendor
|
||||||
|
/template/vendor
|
||||||
|
.ruby-version
|
||||||
|
/**/.ruby-version
|
||||||
|
|
||||||
|
# iOS / CocoaPods
|
||||||
|
/template/ios/build/
|
||||||
|
/template/ios/Pods/
|
||||||
|
/template/ios/Podfile.lock
|
||||||
|
/packages/rn-tester/Gemfile.lock
|
||||||
|
|
||||||
|
# Ignore RNTester specific Pods, but keep the __offline_mirrors__ here.
|
||||||
|
/packages/rn-tester/Pods/*
|
||||||
|
!/packages/rn-tester/Pods/__offline_mirrors_hermes__
|
||||||
|
!/packages/rn-tester/Pods/__offline_mirrors_jsc__
|
||||||
|
|
||||||
|
# @react-native/codegen
|
||||||
|
/React/FBReactNativeSpec/FBReactNativeSpec
|
||||||
|
/packages/react-native-codegen/lib
|
||||||
|
/packages/react-native-codegen/tmp/
|
||||||
|
/ReactCommon/react/renderer/components/rncore/
|
||||||
|
/packages/rn-tester/NativeModuleExample/ScreenshotManagerSpec*
|
||||||
|
/**/RCTThirdPartyFabricComponentsProvider.*
|
||||||
|
|
||||||
|
|
||||||
|
# Additional SDKs
|
||||||
|
/sdks/download
|
||||||
|
/sdks/hermes
|
||||||
|
/sdks/hermesc
|
||||||
|
|
||||||
|
# Visual studio
|
||||||
|
.vscode
|
||||||
|
.vs
|
||||||
|
|
||||||
|
# Android memory profiler files
|
||||||
|
*.hprof
|
||||||
|
|
||||||
|
# Temporary files created by Metro to check the health of the file watcher
|
||||||
|
.metro-health-check*
|
@ -0,0 +1,30 @@
|
|||||||
|
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
|
||||||
|
|
||||||
|
#Depending on the operating system of the host machines(s) that will build or run the containers, the image specified in the FROM statement may need to be changed.
|
||||||
|
#For more information, please see https://aka.ms/containercompat
|
||||||
|
|
||||||
|
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
|
||||||
|
WORKDIR /app
|
||||||
|
EXPOSE 80
|
||||||
|
EXPOSE 443
|
||||||
|
|
||||||
|
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
|
||||||
|
WORKDIR /src
|
||||||
|
COPY ["Api/Api.csproj", "Api/"]
|
||||||
|
COPY ["Dto/Dto.csproj", "Dto/"]
|
||||||
|
COPY ["Modele/Modele.csproj", "Modele/"]
|
||||||
|
COPY ["Entity_Framework/Entity_Framework.csproj", "Entity_Framework/"]
|
||||||
|
COPY ["Interface/Interface.csproj", "Interface/"]
|
||||||
|
COPY ["Extraction_Donnees/Extraction_Donnees.csproj", "Extraction_Donnees/"]
|
||||||
|
RUN dotnet restore "Api/Api.csproj"
|
||||||
|
COPY . .
|
||||||
|
WORKDIR "/src/Api"
|
||||||
|
RUN dotnet build "Api.csproj" -c Release -o /app/build
|
||||||
|
|
||||||
|
FROM build AS publish
|
||||||
|
RUN dotnet publish "Api.csproj" -c Release -o /app/publish /p:UseAppHost=false
|
||||||
|
|
||||||
|
FROM base AS final
|
||||||
|
WORKDIR /app
|
||||||
|
COPY --from=publish /app/publish .
|
||||||
|
ENTRYPOINT ["dotnet", "Api.dll"]
|
@ -0,0 +1,30 @@
|
|||||||
|
using Extraction_Donnees.Extraction;
|
||||||
|
using Interface;
|
||||||
|
|
||||||
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
|
// Add services to the container.
|
||||||
|
|
||||||
|
builder.Services.AddControllers();
|
||||||
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
||||||
|
builder.Services.AddEndpointsApiExplorer();
|
||||||
|
builder.Services.AddSwaggerGen();
|
||||||
|
|
||||||
|
builder.Services.AddSingleton<IApi, Extraction>();
|
||||||
|
|
||||||
|
var app = builder.Build();
|
||||||
|
|
||||||
|
// Configure the HTTP request pipeline.
|
||||||
|
if (app.Environment.IsDevelopment())
|
||||||
|
{
|
||||||
|
app.UseSwagger();
|
||||||
|
app.UseSwaggerUI();
|
||||||
|
}
|
||||||
|
|
||||||
|
app.UseHttpsRedirection();
|
||||||
|
|
||||||
|
app.UseAuthorization();
|
||||||
|
|
||||||
|
app.MapControllers();
|
||||||
|
|
||||||
|
app.Run();
|
@ -0,0 +1,38 @@
|
|||||||
|
{
|
||||||
|
"profiles": {
|
||||||
|
"Api": {
|
||||||
|
"commandName": "Project",
|
||||||
|
"launchBrowser": true,
|
||||||
|
"launchUrl": "swagger",
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
},
|
||||||
|
"dotnetRunMessages": true,
|
||||||
|
"applicationUrl": "https://localhost:7217;http://localhost:5031"
|
||||||
|
},
|
||||||
|
"IIS Express": {
|
||||||
|
"commandName": "IISExpress",
|
||||||
|
"launchBrowser": true,
|
||||||
|
"launchUrl": "swagger",
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Docker": {
|
||||||
|
"commandName": "Docker",
|
||||||
|
"launchBrowser": true,
|
||||||
|
"launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/swagger",
|
||||||
|
"publishAllPorts": true,
|
||||||
|
"useSSL": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||||
|
"iisSettings": {
|
||||||
|
"windowsAuthentication": false,
|
||||||
|
"anonymousAuthentication": true,
|
||||||
|
"iisExpress": {
|
||||||
|
"applicationUrl": "http://localhost:56800",
|
||||||
|
"sslPort": 44325
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Modele\Modele.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,14 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Extraction_Donnees\Extraction_Donnees.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -0,0 +1,13 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Dto\Dto.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
Loading…
Reference in new issue