Skip to content

Commit 78f4fa8

Browse files
authored
Merge branch 'main' into feature/use-dllimport-generator
2 parents a8b691d + eff8883 commit 78f4fa8

File tree

392 files changed

+7331
-5931
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

392 files changed

+7331
-5931
lines changed

.github/CODEOWNERS

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
/src/libraries/Common/src/Interop/ @dotnet/platform-deps-team
55
/src/libraries/Common/src/System/Net/Http/aspnetcore/ @dotnet/http
66
/src/libraries/Common/tests/Tests/System/Net/aspnetcore/ @dotnet/http
7-
/src/libraries/System.Text.Json/ @steveharter @layomia @eiriktsarpalis
87

98
# CoreCLR Code Owners
109

@@ -55,3 +54,8 @@
5554
/src/mono/mono/utils/mono-threads* @lambdageek @vargaz
5655

5756
/src/mono/dlls @thaystg @lambdageek
57+
58+
# Obsoletions / Custom Diagnostics
59+
60+
/docs/project/list-of-diagnostics.md @jeffhandley
61+
/src/libraries/Common/src/System/Obsoletions.cs @jeffhandley

.github/ISSUE_TEMPLATE/01_bug_report.md

Lines changed: 0 additions & 42 deletions
This file was deleted.
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
name: Bug Report
2+
description: Create a report to help us improve
3+
labels: []
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
We welcome bug reports! Please see our [contribution guidelines](https://github.com/dotnet/runtime/blob/main/CONTRIBUTING.md) for more information on writing a good bug report. This template will help us gather the information we need to start the triage process.
9+
- type: textarea
10+
id: background
11+
attributes:
12+
label: Description
13+
description: Please share a clear and concise description of the problem.
14+
placeholder: Description
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: repro-steps
19+
attributes:
20+
label: Reproduction Steps
21+
description: |
22+
Please include minimal steps to reproduce the problem if possible. E.g.: the smallest possible code snippet; or a small project, with steps to run it. If possible include text as text rather than screenshots (so it shows up in searches).
23+
placeholder: Minimal Reproduction
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: expected-behavior
28+
attributes:
29+
label: Expected behavior
30+
description: |
31+
Provide a description of the expected behavior.
32+
placeholder: Expected behavior
33+
validations:
34+
required: true
35+
- type: textarea
36+
id: actual-behavior
37+
attributes:
38+
label: Actual behavior
39+
description: |
40+
Provide a description of the actual behavior observed. If applicable please include any error messages, exception stacktraces or memory dumps.
41+
placeholder: Actual behavior
42+
validations:
43+
required: true
44+
- type: textarea
45+
id: regression
46+
attributes:
47+
label: Regression?
48+
description: |
49+
Did this work in a previous build or release of .NET Core, or from .NET Framework? If you can try a previous release or build to find out, that can help us narrow down the problem. If you don't know, that's OK.
50+
placeholder: Regression?
51+
validations:
52+
required: false
53+
- type: textarea
54+
id: known-workarounds
55+
attributes:
56+
label: Known Workarounds
57+
description: |
58+
Please provide a description of any known workarounds.
59+
placeholder: Known Workarounds
60+
validations:
61+
required: false
62+
- type: textarea
63+
id: configuration
64+
attributes:
65+
label: Configuration
66+
description: |
67+
Please provide more information on your .NET configuration:
68+
* Which version of .NET is the code running on?
69+
* What OS and version, and what distro if applicable?
70+
* What is the architecture (x64, x86, ARM, ARM64)?
71+
* Do you know whether it is specific to that configuration?
72+
* If you're using Blazor, which web browser(s) do you see this issue in?
73+
placeholder: Configuration
74+
validations:
75+
required: false
76+
- type: textarea
77+
id: other-info
78+
attributes:
79+
label: Other information
80+
description: |
81+
If you have an idea where the problem might lie, let us know that here. Please include any pointers to code, relevant changes, or related issues you know of.
82+
placeholder: Other information
83+
validations:
84+
required: false

Directory.Build.props

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,10 @@
213213
<MicrosoftNetCoreAppRuntimePackNativeDir>$([MSBuild]::NormalizeDirectory('$(MicrosoftNetCoreAppRuntimePackRidDir)', 'native'))</MicrosoftNetCoreAppRuntimePackNativeDir>
214214
</PropertyGroup>
215215

216+
<PropertyGroup>
217+
<DotNetHostBinDir>$([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', '$(OutputRid).$(Configuration)', 'corehost'))</DotNetHostBinDir>
218+
</PropertyGroup>
219+
216220
<!--Feature switches -->
217221
<PropertyGroup>
218222
<EnableNgenOptimization Condition="'$(EnableNgenOptimization)' == '' and ('$(Configuration)' == 'Release' or '$(Configuration)' == 'Checked')">true</EnableNgenOptimization>

0 commit comments

Comments
 (0)