Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: il-katta/ACUtils
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.0.140
Choose a base ref
...
head repository: il-katta/ACUtils
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref

Commits on Jul 18, 2022

  1. deploy

    github-actions committed Jul 18, 2022
    Copy the full SHA
    24c4d0e View commit details

Commits on Jul 25, 2022

  1. Copy the full SHA
    5236f52 View commit details
  2. SqlDb.Utils - bugfix

    cattaneoinfoesse committed Jul 25, 2022
    Copy the full SHA
    62ebed2 View commit details
  3. Copy the full SHA
    cc74d81 View commit details
  4. Copy the full SHA
    9a33c47 View commit details
  5. Copy the full SHA
    cfff5b3 View commit details
  6. Copy the full SHA
    d443d0c View commit details

Commits on Aug 2, 2022

  1. Copy the full SHA
    52508a5 View commit details
  2. Copy the full SHA
    9ce24c3 View commit details
  3. Copy the full SHA
    95e6429 View commit details

Commits on Aug 4, 2022

  1. Copy the full SHA
    e9e8a45 View commit details

Commits on Sep 6, 2022

  1. SqlDb bugfix

    cattaneoinfoesse committed Sep 6, 2022
    Copy the full SHA
    a6df63c View commit details

Commits on Sep 12, 2022

  1. SqlDb doc

    il-katta committed Sep 12, 2022
    Copy the full SHA
    78bfded View commit details
  2. SqlDb doc

    il-katta committed Sep 12, 2022
    Copy the full SHA
    f3b0027 View commit details

Commits on Sep 23, 2022

  1. code refactor

    cattaneoinfoesse committed Sep 23, 2022
    Copy the full SHA
    6b67135 View commit details
  2. Copy the full SHA
    e7a9a40 View commit details

Commits on Dec 1, 2022

  1. Copy the full SHA
    d135dc8 View commit details
  2. SqlDb - v1.0.0.147

    cattaneoinfoesse committed Dec 1, 2022
    Copy the full SHA
    10b353c View commit details

Commits on Dec 29, 2022

  1. Copy the full SHA
    d8e9789 View commit details
  2. Copy the full SHA
    06f032d View commit details
  3. Copy the full SHA
    e76d884 View commit details

Commits on Jan 25, 2023

  1. Copy the full SHA
    777b31b View commit details

Commits on Feb 10, 2023

  1. Copy the full SHA
    98ea778 View commit details
  2. SqlDb - v1.0.0.151

    acattaneo-bitagora committed Feb 10, 2023
    Copy the full SHA
    324d273 View commit details
  3. Copy the full SHA
    a4e2719 View commit details
  4. fix github action

    acattaneo-bitagora committed Feb 10, 2023
    Copy the full SHA
    eb98c44 View commit details

Commits on Feb 16, 2023

  1. Copy the full SHA
    efd4081 View commit details
  2. Sqldb v1.0.0.152

    acattaneo-bitagora committed Feb 16, 2023
    Copy the full SHA
    aa134b9 View commit details

Commits on Feb 24, 2023

  1. Copy the full SHA
    8fc35b3 View commit details
  2. Copy the full SHA
    7dc7b90 View commit details

Commits on Mar 6, 2023

  1. Copy the full SHA
    934646f View commit details

Commits on Mar 7, 2023

  1. Copy the full SHA
    af9a87f View commit details
  2. Copy the full SHA
    f10b1dc View commit details

Commits on Apr 27, 2023

  1. Copy the full SHA
    911855e View commit details

Commits on Feb 28, 2024

  1. Copy the full SHA
    ce173f9 View commit details
  2. Copy the full SHA
    273e349 View commit details
  3. Copy the full SHA
    0ee8758 View commit details
Showing 1,086 changed files with 1,614 additions and 463,177 deletions.
121 changes: 78 additions & 43 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,58 +1,58 @@
name: .NET
name: build and publish

on:
push:
branches: [ "master" ]
branches: ["master"]
pull_request:
branches: [ "master" ]
branches: ["master"]

jobs:
build:

runs-on: windows-2019

steps:
- uses: actions/checkout@v3

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.1

- name: Setup NuGet
uses: nuget/setup-nuget@v1
with:
nuget-api-key: ${{ secrets.NuGetAPIKey }}
nuget-version: '5.x'


- run: cd $GITHUB_WORKSPACE

- uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'
- name: Change package version
run: |
python -c "import urllib.request; urllib.request.urlretrieve('https://raw.githubusercontent.com/il-katta/jenkins-libs/master/resources/it/loopback/jenkins/projedit.py', 'projedit.py')"
foreach ($file in (Get-ChildItem ./ACUtils*/*.csproj) ) {
$version = python projedit.py netstandard $file
Write-Output "::set-output name=PROJECT_VERSION::$version"
}
id: project_version
#- uses: actions/setup-python@v4
# with:
# python-version: '3.x'
# architecture: 'x64'
#- name: Change package version
# run: |
# python -c "import urllib.request; urllib.request.urlretrieve('https://raw.githubusercontent.com/il-katta/jenkins-libs/master/resources/it/loopback/jenkins/projedit.py', 'projedit.py')"
# foreach ($file in (Get-ChildItem ./ACUtils*/*.csproj) ) {
# $version = python projedit.py netstandard $file
# Write-Output "::set-output name=PROJECT_VERSION::$version"
# }
# id: project_version

- name: Restore packages
run: nuget restore ACUtils.sln

- name: Build
run: |
msbuild.exe ACUtils.sln /p:Configuration="Release" /p:Platform="Any CPU" /t:"Restore"
msbuild.exe ACUtils.sln /p:Configuration="Release" /p:Platform="Any CPU" /t:"Rebuild"
- name: Commit deploy
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add ./ACUtils*/*.csproj
git commit -m "deploy"
git push
- uses: actions/cache@v3
id: cache-tests-build
env:
cache-name: cache-tests-build
with:
path: ./Tests/bin/Release
key: tests-${{ github.sha }}

#- name: Commit deploy
# run: |
# git config user.name github-actions
# git config user.email github-actions@github.com
# git add ./ACUtils*/*.csproj
# git commit -m "deploy"
# git push

- name: Archive Nuget packages
uses: actions/upload-artifact@v3
@@ -61,20 +61,55 @@ jobs:
path: |
dist/*.nupkg
dist/*.snupkg
- name: Create release
uses: "marvinpinto/action-automatic-releases@latest"
#- name: Create release
# uses: "marvinpinto/action-automatic-releases@latest"
# with:
# repo_token: "${{ secrets.GITHUB_TOKEN }}"
# prerelease: false
# automatic_release_tag: "${{ steps.project_version.outputs.PROJECT_VERSION }}"
# files: |
# dist/*.nupkg
# dist/*.snupkg

test:
needs: build
runs-on: windows-2019
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- uses: microsoft/setup-msbuild@v1.1
- uses: darenm/Setup-VSTest@v1.2
- uses: actions/cache@v3
id: cache-tests-build
env:
cache-name: cache-tests-build
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
automatic_release_tag: "${{ steps.project_version.outputs.PROJECT_VERSION }}"
files: |
dist/*.nupkg
dist/*.snupkg
path: ./Tests/bin/Release
key: tests-${{ github.sha }}
- name: run test
run: |
[System.Environment]::SetEnvironmentVariable('ACUTILS_TEST_CONNECTION_STRING', '${{ secrets.ACUTILS_TEST_CONNECTION_STRING }}')
vstest.console.exe /Platform:x64 ./Tests/bin/Release/Tests.dll
publish:
needs: test
runs-on: windows-2019
if: github.ref == 'refs/heads/master'
steps:
- name: Setup NuGet
uses: nuget/setup-nuget@v1
with:
nuget-api-key: ${{ secrets.NuGetAPIKey }}
nuget-version: "5.x"

- uses: actions/download-artifact@v3
with:
name: nuget-packages
path: .

- name: Publish
run: |
foreach ($file in (Get-ChildItem dist/*.nupkg) ) {
foreach ($file in (Get-ChildItem *.nupkg) ) {
nuget push $file -Source https://api.nuget.org/v3/index.json -SkipDuplicate
}
52 changes: 0 additions & 52 deletions ACUtils.AXRepository/ACUtils.AXRepository.csproj

This file was deleted.

Loading