Skip to content

Commit 6976dad

Browse files
author
Stéphane Royer
committed
documentation
1 parent b4fb370 commit 6976dad

File tree

243 files changed

+6895
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

243 files changed

+6895
-3
lines changed

.github/workflows/CI.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: ETL.NET - CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Setup .NET Core
15+
uses: actions/setup-dotnet@v1
16+
with:
17+
dotnet-version: '5.x'
18+
- name: Install dependencies
19+
run: dotnet restore
20+
- name: Build
21+
run: dotnet build --configuration Release --no-restore
22+
# - name: Test
23+
# run: dotnet run --project NetLicensingClient-demo

.github/workflows/Release.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: ETL.NET - Release
2+
3+
on:
4+
release:
5+
types:
6+
- published
7+
8+
jobs:
9+
publish-nuget:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Setup .NET Core
14+
uses: actions/setup-dotnet@v1
15+
with:
16+
dotnet-version: '5.x'
17+
- name: Install dependencies
18+
working-directory: src
19+
run: dotnet restore
20+
- name: Build
21+
working-directory: src
22+
run: dotnet build --configuration Release --no-restore
23+
- uses: NuGet/[email protected]
24+
with:
25+
nuget-api-key: ${{ secrets.NUGET_API_KEY }}
26+
nuget-version: '5.x'
27+
- name: Publish to NuGet
28+
working-directory: src
29+
run: nuget push **\*.nupkg -Source 'https://api.nuget.org/v3/index.json'
30+
# - uses: actions/setup-node@v1
31+
# with:
32+
# node-version: '12.x'
33+
# run: nuget push **\*.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}}
34+
# - name: Publish to NuGet
35+
# uses: brandedoutcast/publish-nuget@v2
36+
# with:
37+
# PROJECT_FILE_PATH: NetLicensingClient/NetLicensingClient.csproj
38+
# VERSION_REGEX: '^\s*<Version>(.*)<\/Version>\s*$'
39+
# TAG_FORMAT: '*'
40+
# NUGET_KEY: ${{secrets.NUGET_API_KEY}}
41+
#${{ github.event.release.tag_name }}

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"files.exclude": {
33
"src": true, // this is a default value
4+
"documentation": true, // this is a default value
45
"docs": true, // this is a default value
56
},
67
}

Paillave.Etl.code-workspace

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "Sources"
66
},
77
{
8-
"path": "docs",
8+
"path": "documentation",
99
"name": "Docs"
1010
},
1111
{

appveyor.dev.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
version: 1.0.{build}-alpha
2+
branches:
3+
only:
4+
- develop
5+
image: Visual Studio 2017
6+
configuration: Release
7+
platform: Any CPU
8+
dotnet_csproj:
9+
patch: true
10+
file: '**\*.csproj'
11+
version: '{version}'
12+
package_version: '{version}'
13+
assembly_version: '{version}'
14+
file_version: '{version}'
15+
informational_version: '{version}'
16+
before_build:
17+
- cmd: dotnet restore src
18+
build:
19+
project: src/Paillave.Etl.sln
20+
verbosity: minimal
21+
test:
22+
assemblies:
23+
only:
24+
- src\Paillave.EtlTests\bin\Release\netcoreapp2.2\Paillave.EtlTests.dll
25+
- src\Paillave.Etl.TextFileTests\bin\Release\netcoreapp2.2\Paillave.Etl.TextFileTests.dll
26+
- src\Paillave.Etl.XmlFileTests\bin\Release\netcoreapp2.2\Paillave.Etl.XmlFileTests.dll
27+
- src\Paillave.Etl.EntityFrameworkCoreTests\bin\Release\netcoreapp2.2\Paillave.Etl.EntityFrameworkCoreTests.dll
28+
- src\Paillave.Etl.Recipes\bin\Release\netcoreapp2.2\Paillave.Etl.Recipes.dll

appveyor.pr.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
version: 1.0.{build}-alpha
2+
branches:
3+
only:
4+
- master
5+
image: Visual Studio 2017
6+
configuration: Release
7+
platform: Any CPU
8+
dotnet_csproj:
9+
patch: true
10+
file: '**\*.csproj'
11+
version: '{version}'
12+
package_version: '{version}'
13+
assembly_version: '{version}'
14+
file_version: '{version}'
15+
informational_version: '{version}'
16+
before_build:
17+
- cmd: dotnet restore src
18+
build:
19+
project: src/Paillave.Etl.sln
20+
verbosity: minimal
21+
test:
22+
assemblies:
23+
only:
24+
- src\Paillave.EtlTests\bin\Release\netcoreapp2.2\Paillave.EtlTests.dll
25+
- src\Paillave.Etl.TextFileTests\bin\Release\netcoreapp2.2\Paillave.Etl.TextFileTests.dll
26+
- src\Paillave.Etl.XmlFileTests\bin\Release\netcoreapp2.2\Paillave.Etl.XmlFileTests.dll
27+
- src\Paillave.Etl.EntityFrameworkCoreTests\bin\Release\netcoreapp2.2\Paillave.Etl.EntityFrameworkCoreTests.dll
28+
- src\Paillave.Etl.Recipes\bin\Release\netcoreapp2.2\Paillave.Etl.Recipes.dll

appveyor.yml

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
version: 1.0.{build}-alpha
2+
skip_non_tags: true
3+
branches:
4+
only:
5+
- master
6+
image: Visual Studio 2017
7+
configuration: Release
8+
platform: Any CPU
9+
init:
10+
- ps: >-
11+
if(-not $env:APPVEYOR_PULL_REQUEST_NUMBER) {
12+
$env:is_not_pr = "true";
13+
}
14+
if ($env:APPVEYOR_REPO_TAG -eq "true") {
15+
Update-AppveyorBuild -Version "$($env:APPVEYOR_REPO_TAG_NAME.TrimStart("v"))";
16+
}
17+
dotnet_csproj:
18+
patch: true
19+
file: '**\*.csproj'
20+
version: '{version}'
21+
package_version: '{version}'
22+
assembly_version: '{version}'
23+
file_version: '{version}'
24+
informational_version: '{version}'
25+
before_build:
26+
- cmd: dotnet restore src
27+
build:
28+
project: src/Paillave.Etl.sln
29+
verbosity: minimal
30+
test:
31+
assemblies:
32+
only:
33+
- src\Paillave.EtlTests\bin\Release\netcoreapp2.2\Paillave.EtlTests.dll
34+
- src\Paillave.Etl.TextFileTests\bin\Release\netcoreapp2.2\Paillave.Etl.TextFileTests.dll
35+
- src\Paillave.Etl.XmlFileTests\bin\Release\netcoreapp2.2\Paillave.Etl.XmlFileTests.dll
36+
- src\Paillave.Etl.EntityFrameworkCoreTests\bin\Release\netcoreapp2.2\Paillave.Etl.EntityFrameworkCoreTests.dll
37+
- src\Paillave.Etl.Recipes\bin\Release\netcoreapp2.2\Paillave.Etl.Recipes.dll
38+
artifacts:
39+
- path: src\Paillave.Etl\bin\$(configuration)\*.nupkg
40+
name: Paillave.Etl
41+
- path: src\Paillave.Etl.EntityFrameworkCore\bin\$(configuration)\*.nupkg
42+
name: Paillave.Etl.EntityFrameworkCore
43+
- path: src\Paillave.Etl.ExecutionPlan\bin\$(configuration)\*.nupkg
44+
name: Paillave.Etl.ExecutionPlan
45+
- path: src\Paillave.Etl.TextFile\bin\$(configuration)\*.nupkg
46+
name: Paillave.Etl.TextFile
47+
- path: src\Paillave.Etl.XmlFile\bin\$(configuration)\*.nupkg
48+
name: Paillave.Etl.XmlFile
49+
- path: src\Paillave.Etl.ExcelFile\bin\$(configuration)\*.nupkg
50+
name: Paillave.Etl.ExcelFile
51+
- path: src\Paillave.Etl.SqlServer\bin\$(configuration)\*.nupkg
52+
name: Paillave.Etl.SqlServer
53+
- path: src\Paillave.Etl.Ftp\bin\$(configuration)\*.nupkg
54+
name: Paillave.Etl.Ftp
55+
- path: src\Paillave.Etl.Sftp\bin\$(configuration)\*.nupkg
56+
name: Paillave.Etl.Sftp
57+
deploy:
58+
- provider: NuGet
59+
api_key:
60+
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
61+
artifact: Paillave.Etl
62+
- provider: NuGet
63+
api_key:
64+
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
65+
artifact: Paillave.Etl.EntityFrameworkCore
66+
- provider: NuGet
67+
api_key:
68+
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
69+
artifact: Paillave.Etl.ExecutionPlan
70+
- provider: NuGet
71+
api_key:
72+
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
73+
artifact: Paillave.Etl.TextFile
74+
- provider: NuGet
75+
api_key:
76+
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
77+
artifact: Paillave.Etl.ExcelFile
78+
- provider: NuGet
79+
api_key:
80+
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
81+
artifact: Paillave.Etl.SqlServer
82+
- provider: NuGet
83+
api_key:
84+
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
85+
artifact: Paillave.Etl.Ftp
86+
- provider: NuGet
87+
api_key:
88+
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
89+
artifact: Paillave.Etl.Sftp
90+
- provider: NuGet
91+
api_key:
92+
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
93+
artifact: Paillave.Etl.XmlFile
94+
notifications:
95+
- provider: Webhook
96+
url: https://webhooks.gitter.im/e/24499395a6cd92120c65
97+
method: POST
98+
on_build_success: true
99+
on_build_failure: true
100+
on_build_status_changed: true
File renamed without changes.

docs/404.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!doctype html>
2+
<html lang="en" dir="ltr">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width,initial-scale=1">
6+
<meta name="generator" content="Docusaurus v2.0.0-beta.6">
7+
<link rel="alternate" type="application/rss+xml" href="/Etl.Net/blog/rss.xml" title="ETL.NET Blog RSS Feed">
8+
<link rel="alternate" type="application/atom+xml" href="/Etl.Net/blog/atom.xml" title="ETL.NET Blog Atom Feed"><title data-react-helmet="true">Page Not Found | ETL.NET</title><meta data-react-helmet="true" property="og:title" content="Page Not Found | ETL.NET"><meta data-react-helmet="true" name="twitter:card" content="summary_large_image"><meta data-react-helmet="true" property="og:image" content="https://paillave.github.io//Etl.Net/img/full-black-logo.png"><meta data-react-helmet="true" name="twitter:image" content="https://paillave.github.io//Etl.Net/img/full-black-logo.png"><meta data-react-helmet="true" property="og:url" content="https://paillave.github.io//Etl.Net/404.html"><meta data-react-helmet="true" name="docusaurus_locale" content="en"><meta data-react-helmet="true" name="docusaurus_tag" content="default"><link data-react-helmet="true" rel="shortcut icon" href="/Etl.Net/img/favicon.ico"><link data-react-helmet="true" rel="canonical" href="https://paillave.github.io//Etl.Net/404.html"><link data-react-helmet="true" rel="alternate" href="https://paillave.github.io//Etl.Net/404.html" hreflang="en"><link data-react-helmet="true" rel="alternate" href="https://paillave.github.io//Etl.Net/404.html" hreflang="x-default"><link rel="stylesheet" href="/Etl.Net/assets/css/styles.5001f6a5.css">
9+
<link rel="preload" href="/Etl.Net/assets/js/runtime~main.ae098225.js" as="script">
10+
<link rel="preload" href="/Etl.Net/assets/js/main.fdff19b8.js" as="script">
11+
</head>
12+
<body>
13+
<script>!function(){function e(e){document.documentElement.setAttribute("data-theme",e)}var t=function(){var e=null;try{e=localStorage.getItem("theme")}catch(e){}return e}();null!==t?e(t):window.matchMedia("(prefers-color-scheme: dark)").matches?e("dark"):(window.matchMedia("(prefers-color-scheme: light)").matches,e("light"))}()</script><div id="__docusaurus">
14+
<div><a href="#" class="skipToContent_1oUP">Skip to main content</a></div><nav class="navbar navbar--fixed-top"><div class="navbar__inner"><div class="navbar__items"><button aria-label="Navigation bar toggle" class="navbar__toggle clean-btn" type="button" tabindex="0"><svg width="30" height="30" viewBox="0 0 30 30" aria-hidden="true"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"></path></svg></button><a class="navbar__brand" href="/Etl.Net/"><img src="/Etl.Net/img/logo.svg" alt="Etl.Net Logo" class="themedImage_1VuW themedImage--light_3UqQ navbar__logo"><img src="/Etl.Net/img/logo.svg" alt="Etl.Net Logo" class="themedImage_1VuW themedImage--dark_hz6m navbar__logo"><b class="navbar__title">ETL.NET</b></a><a class="navbar__item navbar__link" href="/Etl.Net/docs/intro">Documentation</a><a class="navbar__item navbar__link" href="/Etl.Net/blog">Blog</a></div><div class="navbar__items navbar__items--right"><div class="navbar__search searchBarContainer_MM2z"><input placeholder="Search" aria-label="Search" class="navbar__search-input"><div class="loadingRing_s5VG searchBarLoadingRing_2jQk"><div></div><div></div><div></div><div></div></div></div><a href="https://github.com/paillave/Etl.Net" target="_blank" rel="noopener noreferrer" class="navbar__item navbar__link"><span>GitHub<svg width="13.5" height="13.5" aria-hidden="true" viewBox="0 0 24 24" class="iconExternalLink_3J9K"><path fill="currentColor" d="M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z"></path></svg></span></a><div class="react-toggle toggle_3Zt9 react-toggle--disabled"><div class="react-toggle-track" role="button" tabindex="-1"><div class="react-toggle-track-check"><span class="toggle_71bT">🌜</span></div><div class="react-toggle-track-x"><span class="toggle_71bT">🌞</span></div><div class="react-toggle-thumb"></div></div><input type="checkbox" class="react-toggle-screenreader-only" aria-label="Switch between dark and light mode"></div></div></div><div role="presentation" class="navbar-sidebar__backdrop"></div></nav><div class="main-wrapper"><main class="container margin-vert--xl"><div class="row"><div class="col col--6 col--offset-3"><h1 class="hero__title">Page Not Found</h1><p>We could not find what you were looking for.</p><p>Please contact the owner of the site that linked you to the original URL and let them know their link is broken.</p></div></div></main></div><footer class="footer footer--dark"><div class="container"><div class="footer__bottom text--center"><div class="footer__copyright">Copyright © 2021 Paillave.</div></div></div></footer></div>
15+
<script src="/Etl.Net/assets/js/runtime~main.ae098225.js"></script>
16+
<script src="/Etl.Net/assets/js/main.fdff19b8.js"></script>
17+
</body>
18+
</html>

docs/assets/css/styles.5001f6a5.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/js/061aa48a.3ea171d2.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)