Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Releasing v4 stable #503

Merged
merged 20 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
34a1895
version bump 3.5.0 (#475)
zhiyuanliang-ms Jul 18, 2024
d069049
fix typo in comment (#480)
zhiyuanliang-ms Jul 23, 2024
de9eeed
Use GitHub workflow for PR builds (#481)
amerjusupovic Jul 25, 2024
2ae7e61
Merge branch 'main' of https://github.com/microsoft/FeatureManagement…
amerjusupovic Jul 25, 2024
84d86c6
Merge pull request #482 from microsoft/merge-main-to-preview
amerjusupovic Jul 25, 2024
3b838a4
use TimeProvider (#452)
zhiyuanliang-ms Aug 15, 2024
882c7b7
Adjusts builder extension methods to be friendlier (#487)
rossgrambo Aug 23, 2024
9284d27
Use ITargetingContext when calling GetVariantAsync (#484)
zhiyuanliang-ms Aug 26, 2024
400796d
remove configuration reference from variant feature flag (#488)
zhiyuanliang-ms Aug 27, 2024
9732c8f
Renames and updates EvaluationDataToAppInsights example (#490)
rossgrambo Sep 4, 2024
564312d
For examples and tests- fixes warnings, updates packages, and updates…
rossgrambo Sep 4, 2024
79a31dd
use TimeProvider (#452) (#492)
rossgrambo Sep 9, 2024
f1c5755
Merge branch 'main' into preview
rossgrambo Sep 9, 2024
0b4f473
Removes preview (#493)
rossgrambo Sep 10, 2024
4b32a1a
Removes unused using statements and cleans up spacing. (#496)
rossgrambo Sep 11, 2024
636a702
Merge preview into main (#494)
rossgrambo Sep 12, 2024
c9b9fb6
Revert "Merge preview into main (#494)" (#499)
rossgrambo Sep 12, 2024
138fe01
Merge pull request #502 from microsoft/main
rossgrambo Sep 16, 2024
8603981
Last one wins flag providers (#501)
rossgrambo Sep 16, 2024
7050fa0
Merge pull request #500 from microsoft/preview
rossgrambo Sep 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: FeatureManagement-Dotnet CI

on:
push:
branches:
- main
- preview
- release/*
pull_request:
branches:
- main
- preview
- release/*

permissions:
security-events: write

jobs:
build:
runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install .NET
run: pwsh build/install-dotnet.ps1 -RestoreOnly

- name: Restore
run: pwsh build.ps1 -RestoreOnly

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: 'csharp'

- name: Dotnet Build
run: pwsh build.ps1

- name: Dotnet Pack
run: pwsh pack.ps1

- name: Dotnet Test
run: pwsh test.ps1

- name: Publish Test Results
uses: actions/upload-artifact@v4
with:
name: Unit Test Results
path: ${{ github.workspace }}/tests/**/*.trx

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
175 changes: 0 additions & 175 deletions .pipelines/OneBranch.Official.yml

This file was deleted.

125 changes: 0 additions & 125 deletions .pipelines/windows-buddy.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Microsoft.FeatureManagement.sln
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TargetingConsoleApp", "exam
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.FeatureManagement.Telemetry.ApplicationInsights", "src\Microsoft.FeatureManagement.Telemetry.ApplicationInsights\Microsoft.FeatureManagement.Telemetry.ApplicationInsights.csproj", "{7964DC66-B2D3-412D-B18A-86D1E07D149D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EvaluationDataToApplicationInsights", "examples\EvaluationDataToApplicationInsights\EvaluationDataToApplicationInsights.csproj", "{1502529E-47E9-4306-98C4-BF6CF7C7C275}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VariantAndTelemetryDemo", "examples\VariantAndTelemetryDemo\VariantAndTelemetryDemo.csproj", "{1502529E-47E9-4306-98C4-BF6CF7C7C275}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorServerApp", "examples\BlazorServerApp\BlazorServerApp.csproj", "{12BAB5A6-4EEB-4917-B5D9-4AFB6253008E}"
EndProject
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Feature management provides a way to develop and expose application functionalit

[**Quickstart**](https://learn.microsoft.com/azure/azure-app-configuration/quickstart-feature-flag-dotnet): A quickstart guide is available to learn how to integrate feature flags from *Azure App Configuration* into your .NET applications.

[**Feature Reference**](https://learn.microsoft.com/azure/azure-app-configuration/feature-management-dotnet-reference?pivots=preview-version): This document provides a full feature rundown.
[**Feature Reference**](https://learn.microsoft.com/azure/azure-app-configuration/feature-management-dotnet-reference): This document provides a full feature rundown.

[**API reference**](https://go.microsoft.com/fwlink/?linkid=2091700): This API reference details the API surface of the libraries contained within this repository.

Expand All @@ -20,7 +20,7 @@ Feature management provides a way to develop and expose application functionalit
* [ASP.NET Core Web App (Razor Page)](./examples/RazorPages)
* [ASP.NET Core Web App (MVC)](./examples/FeatureFlagDemo)
* [Blazor Server App](./examples/BlazorServerApp)
* [ASP.NET Core Web App with Feature Flag Telemetry](./examples/EvaluationDataToApplicationInsights)
* [ASP.NET Core Web App with Variants and Telemetry](./examples/VariantAndTelemetryDemo)
* [ASP.NET Core Web App with Variant Service](./examples/VariantServiceDemo)

## Contributing
Expand Down
2 changes: 1 addition & 1 deletion examples/BlazorServerApp/BlazorServerApp.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

Expand Down
Loading
Loading