Skip to content

Commit aaf10ed

Browse files
authored
Merge pull request #4 from yakovypg/reconstruct_project
Reconstruct project
2 parents 9eda3e0 + 308da34 commit aaf10ed

362 files changed

Lines changed: 350 additions & 24945 deletions

File tree

Some content is hidden

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

‎.gitattributes‎

Lines changed: 0 additions & 63 deletions
This file was deleted.

‎.github/workflows/dotnet.yml‎

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,31 @@ on:
77
branches: [ "master" ]
88

99
jobs:
10-
1110
build:
1211

1312
runs-on: ${{ matrix.os }}
14-
13+
1514
strategy:
1615
matrix:
1716
os: [ubuntu-latest, macos-latest, windows-latest]
1817

1918
steps:
20-
- name: Checkout
21-
uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
20+
with:
21+
submodules: recursive
22+
fetch-depth: 0
2223

2324
- name: Setup .NET
24-
uses: actions/setup-dotnet@v3
25+
uses: actions/setup-dotnet@v4
2526
with:
26-
dotnet-version: 6.0.x
27-
27+
dotnet-version: |
28+
6.0.x
29+
7.0.x
30+
8.0.x
31+
2832
- name: Restore dependencies
2933
run: dotnet restore
30-
3134
- name: Build
32-
run: dotnet build --no-restore -c Release
33-
35+
run: dotnet build --no-restore
3436
- name: Test
35-
run: dotnet test --no-build --verbosity normal -c Release
37+
run: dotnet test --no-build --verbosity normal

‎.gitignore‎

Lines changed: 129 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
33
##
4-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
4+
## Get latest from `dotnet new gitignore`
5+
6+
# Error log files
7+
compiler-diagnostics.sarif
8+
9+
# dotenv files
10+
.env
511

612
# User-specific files
713
*.rsuser
@@ -29,12 +35,11 @@ x86/
2935
bld/
3036
[Bb]in/
3137
[Oo]bj/
32-
[Oo]ut/
3338
[Ll]og/
3439
[Ll]ogs/
3540

3641
# Visual Studio Code cache/options directory
37-
.vscode
42+
.vscode/
3843

3944
# Visual Studio 2015/2017 cache/options directory
4045
.vs/
@@ -61,11 +66,14 @@ dlldata.c
6166
# Benchmark Results
6267
BenchmarkDotNet.Artifacts/
6368

64-
# .NET Core
69+
# .NET
6570
project.lock.json
6671
project.fragment.lock.json
6772
artifacts/
6873

74+
# Tye
75+
.tye/
76+
6977
# ASP.NET Scaffolding
7078
ScaffoldingReadMe.txt
7179

@@ -94,6 +102,7 @@ StyleCopReport.xml
94102
*.tmp_proj
95103
*_wpftmp.csproj
96104
*.log
105+
*.tlog
97106
*.vspscc
98107
*.vssscc
99108
.builds
@@ -297,6 +306,17 @@ node_modules/
297306
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
298307
*.vbw
299308

309+
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
310+
*.vbp
311+
312+
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
313+
*.dsw
314+
*.dsp
315+
316+
# Visual Studio 6 technical files
317+
*.ncb
318+
*.aps
319+
300320
# Visual Studio LightSwitch build output
301321
**/*.HTMLClient/GeneratedArtifacts
302322
**/*.DesktopClient/GeneratedArtifacts
@@ -353,6 +373,9 @@ ASALocalRun/
353373
# Local History for Visual Studio
354374
.localhistory/
355375

376+
# Visual Studio History (VSHistory) files
377+
.vshistory/
378+
356379
# BeatPulse healthcheck temp database
357380
healthchecksdb
358381

@@ -363,4 +386,105 @@ MigrationBackup/
363386
.ionide/
364387

365388
# Fody - auto-generated XML schema
366-
FodyWeavers.xsd
389+
FodyWeavers.xsd
390+
391+
# VS Code files for those working on multiple tools
392+
.vscode/*
393+
!.vscode/settings.json
394+
!.vscode/tasks.json
395+
!.vscode/launch.json
396+
!.vscode/extensions.json
397+
*.code-workspace
398+
399+
# Local History for Visual Studio Code
400+
.history/
401+
402+
# Windows Installer files from build outputs
403+
*.cab
404+
*.msi
405+
*.msix
406+
*.msm
407+
*.msp
408+
409+
# JetBrains Rider
410+
*.sln.iml
411+
.idea
412+
413+
##
414+
## Visual studio for Mac
415+
##
416+
417+
418+
# globs
419+
Makefile.in
420+
*.userprefs
421+
*.usertasks
422+
config.make
423+
config.status
424+
aclocal.m4
425+
install-sh
426+
autom4te.cache/
427+
*.tar.gz
428+
tarballs/
429+
test-results/
430+
431+
# Mac bundle stuff
432+
*.dmg
433+
*.app
434+
435+
# content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
436+
# General
437+
.DS_Store
438+
.AppleDouble
439+
.LSOverride
440+
441+
# Icon must end with two \r
442+
Icon
443+
444+
445+
# Thumbnails
446+
._*
447+
448+
# Files that might appear in the root of a volume
449+
.DocumentRevisions-V100
450+
.fseventsd
451+
.Spotlight-V100
452+
.TemporaryItems
453+
.Trashes
454+
.VolumeIcon.icns
455+
.com.apple.timemachine.donotpresent
456+
457+
# Directories potentially created on remote AFP share
458+
.AppleDB
459+
.AppleDesktop
460+
Network Trash Folder
461+
Temporary Items
462+
.apdisk
463+
464+
# content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
465+
# Windows thumbnail cache files
466+
Thumbs.db
467+
ehthumbs.db
468+
ehthumbs_vista.db
469+
470+
# Dump file
471+
*.stackdump
472+
473+
# Folder config file
474+
[Dd]esktop.ini
475+
476+
# Recycle Bin used on file shares
477+
$RECYCLE.BIN/
478+
479+
# Windows Installer files
480+
*.cab
481+
*.msi
482+
*.msix
483+
*.msm
484+
*.msp
485+
486+
# Windows shortcuts
487+
*.lnk
488+
489+
# Vim temporary swap files
490+
*.swp

‎.gitmodules‎

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[submodule "Ypdf.CommandLine"]
2+
path = Ypdf.CommandLine
3+
url = https://github.com/yakovypg/Ypdf.CommandLine
4+
[submodule "Ypdf.Desktop"]
5+
path = Ypdf.Desktop
6+
url = https://github.com/yakovypg/Ypdf.Desktop
7+
[submodule "Ypdf.Web"]
8+
path = Ypdf.Web
9+
url = https://github.com/yakovypg/Ypdf.Web
10+
[submodule "Ypdf.Core"]
11+
path = Ypdf.Core
12+
url = https://github.com/yakovypg/Ypdf.Core

0 commit comments

Comments
 (0)