Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
f5fd961
Merge pull request #2995 from microsoft/main
rajkumar-rangaraj Sep 23, 2025
99f2d48
Skeleton for shim (#2996)
harsimar Oct 3, 2025
a7b3851
fixing tracktrace
harsimar Oct 6, 2025
58b3f53
Add IOpenTelemetry builder API to collect telemetry. (#3000)
rajkumar-rangaraj Oct 14, 2025
b6412a0
[Shim] Shimmed NLog with connection string support and fixed builder …
rajkumar-rangaraj Oct 15, 2025
c523038
[Shim] ASP.NET Core and Worker Service Support (#3002)
rajkumar-rangaraj Oct 16, 2025
4f24095
Classic ASP.NET Support (#3003)
rajkumar-rangaraj Oct 22, 2025
ee3ac51
merge new changes
harsimar Oct 22, 2025
3d8cddf
Merge branch 'develop' into harskaur/trackTrace
harsimar Oct 22, 2025
6a15ff6
fixing properties on tracktrace
harsimar Oct 23, 2025
c3e770f
remove connection string
harsimar Oct 23, 2025
f173c9f
pr comment
harsimar Oct 23, 2025
05b6f16
changing state
harsimar Oct 23, 2025
2146067
Merge pull request #2998 from microsoft/harskaur/trackTrace
harsimar Oct 23, 2025
d450a9a
exception
harsimar Oct 23, 2025
28d2282
starting changes
harsimar Oct 23, 2025
8b4446c
pr comments
harsimar Oct 23, 2025
6f86755
this.data
harsimar Oct 23, 2025
04498af
remove connection string
harsimar Oct 24, 2025
1175161
Merge pull request #3004 from microsoft/harskaur/trackException
harsimar Oct 24, 2025
f6dc146
Merge branch 'develop' into harskaur/trackEvent
harsimar Oct 24, 2025
afaee1d
trackEvent
harsimar Oct 24, 2025
3bad469
remove util method
harsimar Oct 24, 2025
b287687
pr comments
harsimar Oct 24, 2025
b6bee82
Merge pull request #3006 from microsoft/harskaur/trackEvent
harsimar Oct 24, 2025
1250451
NLog ApplicationInsightsTarget FlushAsync (#3005)
snakefoot Oct 28, 2025
cfb871a
Update integration tests (#3007)
rajkumar-rangaraj Nov 3, 2025
0d04a53
[Shim] Update CI (#3008)
rajkumar-rangaraj Nov 4, 2025
bcee9ac
[Shim] Update NLog Tests (#3009)
rajkumar-rangaraj Nov 4, 2025
2c615f6
[Shim] Start/StopOperation with tests (#3011)
rajkumar-rangaraj Nov 10, 2025
e38ed32
[Shim] Exception Telemetry with tests + Updated samples (#3016)
rajkumar-rangaraj Nov 11, 2025
0d7d2fd
NLog ApplicationInsightsTarget InitializeTarget requires ConnectionSt…
snakefoot Nov 11, 2025
837239b
NLog ApplicationInsightsTarget with support for IncludeMldc
snakefoot Oct 30, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
55 changes: 0 additions & 55 deletions .github/workflows/build-and-test-LOGGING.yml

This file was deleted.

58 changes: 0 additions & 58 deletions .github/workflows/build-and-test-NETCORE.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,29 @@
# .NET CLI: https://docs.microsoft.com/dotnet/core/tools/
# Description: The purpose of this workflow is to compile and run unit tests.

name: Build And Test, BASE
name: Build And Test, SHIM

on:
workflow_dispatch:
push:
branches: [ main ]
branches: [ "main", "develop", "master" ]
pull_request:
branches: [ main ]
branches: [ "main", "develop", "master" ]

jobs:
build-test-BASE:
build-test-SHIM:

runs-on: ${{ matrix.os }}

env:
SOLUTION: ./BASE/Microsoft.ApplicationInsights.sln
SOLUTION: ./SHIM/Microsoft.ApplicationInsights.Shim.sln
TEST_RESULTS_DIRECTORY: ${{ github.workspace }}/TestResults

strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
framework: [net452, net462, net472, net480, net481, netcoreapp3.1, net6.0, net7.0, net8.0, net9.0]
framework: [net462, net472, net480, net481, net8.0, net9.0]
include:
- os: ubuntu-latest
args: "--filter TestCategory!=WindowsOnly"
Expand Down
55 changes: 0 additions & 55 deletions .github/workflows/build-and-test-WEB.yml

This file was deleted.

11 changes: 1 addition & 10 deletions .github/workflows/codeql-csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,7 @@ jobs:
fail-fast: false
matrix:
solution:
- ./NETCORE/ApplicationInsights.AspNetCore.sln
- ./Everything.sln
- ./ProjectsForSigning.sln
- ./examples/Examples.sln
- ./LOGGING/Logging.sln
- ./BASE/Microsoft.ApplicationInsights.sln
- ./WEB/Src/Microsoft.ApplicationInsights.Web.sln
- ./SHIM/Microsoft.ApplicationInsights.Shim.sln
include:
- language: csharp
build-mode: manual
Expand All @@ -72,9 +66,6 @@ jobs:
uses: actions/setup-dotnet@v4.3.1
with:
dotnet-version: |
3.1.x
6.0.x
7.0.x
8.0.x
9.0.x

Expand Down
58 changes: 0 additions & 58 deletions .github/workflows/redfield-sanity-check.yml

This file was deleted.

12 changes: 1 addition & 11 deletions .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
solution: [
./NETCORE/ApplicationInsights.AspNetCore.sln,
./Everything.sln,
./ProjectsForSigning.sln,
./examples/Examples.sln,
./LOGGING/Logging.sln,
./BASE/Microsoft.ApplicationInsights.sln,
./WEB/Src/Microsoft.ApplicationInsights.Web.sln]
solution: [./SHIM/Microsoft.ApplicationInsights.Shim.sln]

steps:
- uses: actions/checkout@v4
Expand All @@ -35,9 +28,6 @@ jobs:
uses: actions/setup-dotnet@v4.3.1
with:
dotnet-version: |
3.1.x
6.0.x
7.0.x
8.0.x
9.0.x

Expand Down
Loading
Loading