forked from icgam/Easify.Azure
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial port of the code * Prepare project for the first release * Upgade the packages to the latest * Replace the builds * Added missing icons and configurations * Added the icon to the project * Remove the logo from serilog * Remove the logo * Update the project files to the right project targets * Remove logo from all projects due to the error on build
- Loading branch information
1 parent
56fd3d6
commit e354aea
Showing
26 changed files
with
157 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,15 @@ name: CI on Branches and PRs | |
|
||
on: | ||
workflow_dispatch: | ||
branches-ignore: [ master ] | ||
branches-ignore: [master] | ||
paths: "src/**" | ||
|
||
push: | ||
branches-ignore: [ master ] | ||
branches-ignore: [master] | ||
paths: "src/**" | ||
|
||
pull_request: | ||
branches: [ master ] | ||
branches: [master] | ||
paths: "src/**" | ||
|
||
jobs: | ||
|
@@ -24,11 +24,11 @@ jobs: | |
- name: Install GitVersion | ||
uses: gittools/actions/gitversion/[email protected] | ||
with: | ||
versionSpec: "5.5.x" | ||
versionSpec: "5.8.x" | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: "3.1.x" | ||
dotnet-version: "6.0.x" | ||
- name: Install dependencies | ||
run: dotnet restore src | ||
- name: Use GitVersion | ||
|
@@ -49,6 +49,6 @@ jobs: | |
name: nuget-packages | ||
path: "**/*.nupkg" | ||
- name: Configure github as Package Repository | ||
run: dotnet nuget add source https://nuget.pkg.github.com/icgam/index.json -n "github" | ||
run: dotnet nuget add source https://nuget.pkg.github.com/LittleBlocks/index.json -n "github" | ||
- name: Publish the package to GitHub Packages | ||
run: dotnet nuget push "**/*.nupkg" -s "github" -k ${{ secrets.GITHUB_TOKEN }} --skip-duplicate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ name: Release build on master/main | |
|
||
on: | ||
workflow_dispatch: | ||
branches: [ master ] | ||
branches: [master] | ||
paths: "src/**" | ||
push: | ||
branches: [ master ] | ||
branches: [master] | ||
paths: "src/**" | ||
|
||
jobs: | ||
|
@@ -19,11 +19,11 @@ jobs: | |
- name: Install GitVersion | ||
uses: gittools/actions/gitversion/[email protected] | ||
with: | ||
versionSpec: "5.5.x" | ||
versionSpec: "5.8.x" | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: "3.1.x" | ||
dotnet-version: "6.0.x" | ||
- name: Install dependencies | ||
run: dotnet restore src | ||
- name: Use GitVersion | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
next-version: 1.0.0 | ||
mode: Mainline | ||
major-version-bump-message: '\+semver:\s?(breaking|major)' | ||
minor-version-bump-message: '\+semver:\s?(feature|minor)' | ||
patch-version-bump-message: '\+semver:\s?(fix|patch)' | ||
no-bump-message: '\+semver:\s?(none|skip)' | ||
ignore: | ||
commits-before: 2023-01-01T00:00:00 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 0 additions & 17 deletions
17
src/Easify.Azure.AspNetCore.AppInsights/Easify.Azure.AspNetCore.AppInsights.csproj
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
src/Easify.Azure.AspNetCore/Easify.Azure.AspNetCore.csproj
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 10 additions & 8 deletions
18
...e.AspNetCore.AppInsights.UnitTests.csproj → ...e.AspNetCore.AppInsights.UnitTests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<TargetFramework>net6.0</TargetFramework> | ||
|
||
<IsPackable>false</IsPackable> | ||
|
||
<LangVersion>default</LangVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="FluentAssertions" Version="5.10.3" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" /> | ||
<PackageReference Include="NSubstitute" Version="4.2.2" /> | ||
<PackageReference Include="xunit" Version="2.4.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3"> | ||
<PackageReference Include="FluentAssertions" Version="6.8.0" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" /> | ||
<PackageReference Include="NSubstitute" Version="4.4.0" /> | ||
<PackageReference Include="xunit" Version="2.4.2" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="coverlet.collector" Version="1.3.0"> | ||
<PackageReference Include="coverlet.collector" Version="3.2.0"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Easify.Azure.AspNetCore.AppInsights\Easify.Azure.AspNetCore.AppInsights.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.Azure.AspNetCore.AppInsights\LittleBlocks.Azure.AspNetCore.AppInsights.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...ittleBlocks.Azure.AspNetCore.AppInsights/LittleBlocks.Azure.AspNetCore.AppInsights.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Title>LittleBlocks.Azure.AspNetCore.AppInsights</Title> | ||
<Authors>Mohammad Moattar</Authors> | ||
<PackageProjectUrl>https://github.com/LittleBlocks/LittleBlocks.Azure</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/LittleBlocks/LittleBlocks.Azure</RepositoryUrl> | ||
<LangVersion>default</LangVersion> | ||
<TargetFrameworks>net47;net5.0;net6.0;netstandard2.0</TargetFrameworks> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.21.0" /> | ||
<PackageReference Include="LittleBlocks.Configurations" Version="1.0.2" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.