Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 74 additions & 0 deletions Softech/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
################################################################################
# Il file gitignore è stato creato automaticamente da Microsoft(R) Visual Studio.
################################################################################

/bin

# Visual Studio 2015 cache/options directory
.vs/

# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
bld/
[Bb]in/
[Oo]bj/
#[Ll]og/

# Per progetti Angular
# compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
/node_modules

# profiling files
chrome-profiler-events*.json

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
.DS_Store
Thumbs.db

#file generati
pubblicazioni/
30 changes: 30 additions & 0 deletions Softech/common/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
**/.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
!**/.gitignore
!.git/HEAD
!.git/config
!.git/packed-refs
!.git/refs/heads/**
23 changes: 23 additions & 0 deletions Softech/common/lib/DatexModelOrig/DatexModelOrig.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NLog.Web.AspNetCore" Version="5.3.14" />
</ItemGroup>

<ItemGroup>
<Folder Include="Connected Services\" />
<Folder Include="Proxy\" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\DbManager\DbManager.csproj" />
<ProjectReference Include="..\Supporto\Supporto.csproj" />
</ItemGroup>

</Project>
25 changes: 25 additions & 0 deletions Softech/common/lib/DatexModelOrig/DatexModelOrig.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34701.34
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DatexModelOrig", "DatexModelOrig.csproj", "{41CC8D9D-F72D-4711-8438-37AB646AF0E1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{41CC8D9D-F72D-4711-8438-37AB646AF0E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{41CC8D9D-F72D-4711-8438-37AB646AF0E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{41CC8D9D-F72D-4711-8438-37AB646AF0E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{41CC8D9D-F72D-4711-8438-37AB646AF0E1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {01165972-2A12-4FBC-9A36-36C4BEB4B439}
EndGlobalSection
EndGlobal
Loading
Loading