Skip to content

Commit

Permalink
Merge pull request #8 from BLaZeKiLL/wip/porting-setup
Browse files Browse the repository at this point in the history
Porting refactor
  • Loading branch information
BLaZeKiLL authored Jan 19, 2024
2 parents cfdc72c + 12f86dc commit cc20de8
Show file tree
Hide file tree
Showing 51 changed files with 158 additions and 122 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json

name: build
name: dotnet-build

on:
workflow_dispatch: # Allow running the workflow manually from the GitHub UI
Expand All @@ -14,10 +14,11 @@ on:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
NuGetDirectory: ${{ github.workspace }}/nuget
NuGetDirectory: ${{ github.workspace }}/dotnet/nuget

defaults:
run:
working-directory: ./dotnet
shell: pwsh

jobs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json

name: publish
name: dotnet-publish

on:
push:
Expand All @@ -10,10 +10,11 @@ on:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
NuGetDirectory: ${{ github.workspace }}/nuget
NuGetDirectory: ${{ github.workspace }}/dotnet/nuget

defaults:
run:
working-directory: ./dotnet
shell: pwsh

jobs:
Expand Down
110 changes: 0 additions & 110 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,112 +1,2 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates
.vs/
*.VC.db

# Build results
[Aa]rtifacts/
[Dd]ebug/
[Rr]elease/
x64/
[Bb]in/
[Oo]bj/
.dotnet/
.tools/
src/Templates/**/ModifiedTemplates/
.packages/

# Per-user project properties
launchSettings.json

*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.wrn
*.vspscc
*.vssscc
.builds
*.pidb
*.log
*.scc

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile
*.VC.opendb

# Visual Studio profiler
*.psess
*.vsp
*.vspx

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
*.ncrunch*
.*crunch*.local.xml

# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.[Pp]ublish.xml
*.pfx
*.publishsettings

# SQL Server files
App_Data/*.mdf
App_Data/*.ldf

# =========================
# Windows detritus
# =========================

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Mac desktop service store files
.DS_Store
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</a>
</p>

| Plugin | Nuget |
|----------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [Ollama Connector](https://github.com/BLaZeKiLL/Codeblaze.SemanticKernel/tree/main/Codeblaze.SemanticKernel.Connectors.Ollama) | <a href="https://www.nuget.org/packages/Codeblaze.SemanticKernel.Connectors.Ollama"><img alt="Nuget" src="https://img.shields.io/nuget/v/Codeblaze.SemanticKernel.Connectors.Ollama?label=ollama"></a> |
| [Neo4J Memory](https://github.com/BLaZeKiLL/Codeblaze.SemanticKernel/tree/main/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j) | <a href="https://www.nuget.org/packages/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j"><img alt="Nuget" src="https://img.shields.io/nuget/v/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j?label=neo4j-memory"></a> |
| [Neo4j Cypher Plugin](https://github.com/BLaZeKiLL/Codeblaze.SemanticKernel/tree/main/Codeblaze.SemanticKernel.Plugins.Neo4j) | <a href="https://www.nuget.org/packages/Codeblaze.SemanticKernel.Plugins.Neo4j"><img alt="Nuget" src="https://img.shields.io/nuget/v/Codeblaze.SemanticKernel.Plugins.Neo4j?label=neo4j-cypher"></a> |
| Plugin | Nuget | Python | Java |
|---------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------|------|
| Ollama Connector | <a href="https://www.nuget.org/packages/Codeblaze.SemanticKernel.Connectors.Ollama"><img alt="Nuget" src="https://img.shields.io/nuget/v/Codeblaze.SemanticKernel.Connectors.Ollama?label=ollama"></a> | | |
| Neo4J Memory | <a href="https://www.nuget.org/packages/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j"><img alt="Nuget" src="https://img.shields.io/nuget/v/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j?label=neo4j-memory"></a> | | |
| Neo4j Cypher Plugin | <a href="https://www.nuget.org/packages/Codeblaze.SemanticKernel.Plugins.Neo4j"><img alt="Nuget" src="https://img.shields.io/nuget/v/Codeblaze.SemanticKernel.Plugins.Neo4j?label=neo4j-cypher"></a> | | |
File renamed without changes.
112 changes: 112 additions & 0 deletions dotnet/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates
.vs/
*.VC.db

# Build results
[Aa]rtifacts/
[Dd]ebug/
[Rr]elease/
x64/
[Bb]in/
[Oo]bj/
.dotnet/
.tools/
src/Templates/**/ModifiedTemplates/
.packages/

# Per-user project properties
launchSettings.json

*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.wrn
*.vspscc
*.vssscc
.builds
*.pidb
*.log
*.scc

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile
*.VC.opendb

# Visual Studio profiler
*.psess
*.vsp
*.vspx

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
*.ncrunch*
.*crunch*.local.xml

# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.[Pp]ublish.xml
*.pfx
*.publishsettings

# SQL Server files
App_Data/*.mdf
App_Data/*.ldf

# =========================
# Windows detritus
# =========================

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Mac desktop service store files
.DS_Store
File renamed without changes.
13 changes: 13 additions & 0 deletions dotnet/.idea/.idea.Codeblaze.SemanticKernel/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dotnet/.idea/.idea.Codeblaze.SemanticKernel/.idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions dotnet/.idea/.idea.Codeblaze.SemanticKernel/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions dotnet/.idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions dotnet/.idea/indexLayout.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@

<ItemGroup>
<None Include="./README.md" Pack="true" PackagePath="/" />
<None Include="../LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)" />
<None Include="../../LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)" />
</ItemGroup>
</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

<ItemGroup>
<None Include="./README.md" Pack="true" PackagePath="/" />
<None Include="../LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)" />
<None Include="../../LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)" />
</ItemGroup>

</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

<ItemGroup>
<None Include="./README.md" Pack="true" PackagePath="/"/>
<None Include="../LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)"/>
<None Include="../../LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)"/>
</ItemGroup>

</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added java/.gitkeep
Empty file.
Empty file added python/.gitkeep
Empty file.

0 comments on commit cc20de8

Please sign in to comment.