Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 5 additions & 6 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@

* @dotnet/docs

actions/dependabot-bot/ @IEvangelist
actions/docs-verifier/ @BillWagner @IEvangelist
actions/dependabot-bot/ @dotnet/docs
actions/docs-verifier/ @BillWagner
actions/dotnet-version-updater/ @IEvangelist
actions/sequester/ @BillWagner
actions/status-checker/ @gewarren
cleanrepo/ @gewarren
DotNet.DocsTools/ @IEvangelist @BillWagner
DotNet.DocsToolsTests/ @IEvangelist @BillWagner
DotNet.DocsTools/ @BillWagner
DotNet.DocsToolsTests/ @BillWagner
GitHub.QuerySandbox/ @BillWagner
GitHub.RepositoryExplorer/ @BillWagner
GitHub.RepositoryExplorer.Client/ @BillWagner
GitHub.RepositoryExplorer.Functions/ @BillWagner
GitHub.RepositoryExplorer.Models/ @BillWagner
GitHub.RepositoryExplorer.Services/ @BillWagner
GitHub.RepositoryExplorer.WebApi/ @BillWagner
GitHub.RepositoryExplorer.WebApi/ @BillWagner
IssueCloser/ @BillWagner
PackageIndexer/ @gewarren
RepoMan/ @adegeo
Expand All @@ -26,4 +26,3 @@ WhatsNew.Cli/ @BillWagner
WhatsNew.Infrastructure/ @BillWagner
WhatsNew.Infrastructure.Tests/ @BillWagner
XmlDocConflictResolver/ @gewarren

2 changes: 1 addition & 1 deletion .github/workflows/build-docs-verifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@main
with:
dotnet-version: '9.0.x'
dotnet-version: '10.0.x'
- name: Try get cached dependencies
uses: actions/cache@main
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
if: ${{ matrix.language == 'csharp' }}
uses: actions/setup-dotnet@main
with:
dotnet-version: 9.0.x
dotnet-version: 10.0.x

- name: Install dependencies
if: ${{ matrix.language == 'csharp' }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/dotnet-build-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
env:
REASON: ${{ github.event.inputs.reason }}

- name: Setup .NET 9.0
- name: Setup .NET 10.0
uses: actions/setup-dotnet@main
with:
dotnet-version: 9.0.x
dotnet-version: 10.0.x

- name: Restore dependencies for .NET docs tools
run: |
Expand All @@ -53,10 +53,10 @@ jobs:
steps:
- uses: actions/checkout@main

- name: Setup .NET 9.0
- name: Setup .NET 10.0
uses: actions/setup-dotnet@main
with:
dotnet-version: 9.0.x
dotnet-version: 10.0.x

- name: Run tests
run: |
Expand Down
6 changes: 3 additions & 3 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.3.0" />
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="2.1.0" />
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Sdk" Version="2.0.7" />
<PackageVersion Include="Microsoft.Build" Version="17.14.28" />
<PackageVersion Include="Microsoft.Build" Version="18.0.2" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.5.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.4.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="10.0.1" />
Expand All @@ -29,8 +29,8 @@
<PackageVersion Include="Microsoft.Extensions.FileProviders.Embedded" Version="10.0.1" />
<PackageVersion Include="Microsoft.Extensions.FileSystemGlobbing" Version="10.0.1" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="10.0.1" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="10.0.1" />
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="10.0.1" />
<PackageVersion Include="Microsoft.Extensions.Options" Version="10.0.1" />
<PackageVersion Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="10.0.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
Expand Down
6 changes: 3 additions & 3 deletions DotNet.DocsTools/DotNet.DocsTools.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyVersion>2.2.0.0</AssemblyVersion>
<FileVersion>2.2.0.0</FileVersion>
<AssemblyVersion>2.3.0.0</AssemblyVersion>
<FileVersion>2.3.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GitHubJwt" />
Expand Down
2 changes: 1 addition & 1 deletion DotnetDocsToolsTests/DotnetDocsTools.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
Expand Down
6 changes: 3 additions & 3 deletions IssueCloser/IssueCloser.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
<FileVersion>2.1.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="bulkcloseconfig.json" />
Expand Down
8 changes: 4 additions & 4 deletions RepoMan/RepoMan.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<Version>4.1.1</Version>
<FileVersion>4.1.1.0</FileVersion>
<AssemblyVersion>4.2.1.0</AssemblyVersion>
<Version>4.2.1</Version>
<FileVersion>4.2.1.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
Expand Down
2 changes: 1 addition & 1 deletion RepoManChecker/RepoManCheckerCLI.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>RepoMan</RootNamespace>
Expand Down
43 changes: 0 additions & 43 deletions Whats-new/Whats-new.sln

This file was deleted.

5 changes: 0 additions & 5 deletions WhatsNew.Cli/.vscode/extensions.json

This file was deleted.

46 changes: 0 additions & 46 deletions WhatsNew.Cli/CONTRIBUTING.md

This file was deleted.

97 changes: 0 additions & 97 deletions WhatsNew.Cli/Program.cs

This file was deleted.

Loading
Loading