Skip to content

Commit 339ef05

Browse files
authored
Merge branch 'main' into test-auto-2
2 parents f5977ea + afdef3c commit 339ef05

File tree

5 files changed

+82
-28
lines changed

5 files changed

+82
-28
lines changed

.github/bb-auto-config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
repo_owner: ArgoZhang
2-
auto_delete_merged_branch: true
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
name: 🐞 Bug Report
2+
description: File a bug/issue
3+
title: "bug(): title"
4+
labels: [bug]
5+
assignees:
6+
- argozhang
7+
body:
8+
- type: checkboxes
9+
attributes:
10+
label: Is there an existing issue for this?
11+
description: Please search to see if an issue already exists for the bug you encountered ([BootstrapBlazor/issues](https://github.com/dotnetcore/BootstrapBlazor/issues?q=is%3Aissue)).
12+
options:
13+
- label: I have searched the existing issues
14+
required: true
15+
- type: textarea
16+
attributes:
17+
label: Describe the bug
18+
description: A clear and concise description of what the bug is.
19+
validations:
20+
required: true
21+
- type: textarea
22+
attributes:
23+
label: Expected Behavior
24+
description: A clear and concise description of what you expected to happen.
25+
validations:
26+
required: true
27+
- type: dropdown
28+
attributes:
29+
label: Interactive render mode
30+
description: What render mode of our software are you running?
31+
options:
32+
- Static Server (Static server-side rendering (static SSR))
33+
- Interactive Server (Interactive server-side rendering (interactive SSR) using Blazor Server)
34+
- Interactive WebAssembly (Client-side rendering (CSR) using Blazor WebAssembly)
35+
- Interactive Auto (Server, then client)
36+
default: 0
37+
validations:
38+
required: true
39+
- type: textarea
40+
attributes:
41+
label: Steps To Reproduce
42+
description: |
43+
We ❤ code! Point us to a [minimalistic project which reproduces this issue (repro)](https://github.com/dotnetcore/BootstrapBlazor/blob/main/docs/repro.md) hosted in a public GitHub repo.
44+
45+
We will close this issue if:
46+
- The repro project you share with us is complex. We can't investigate custom projects, so don't point us to such, please.
47+
- If we will not be able to repro the behavior you're reporting.
48+
- If the repro project is attached as a `.zip` file.
49+
- If the GitHub repro project is set to `Private`.
50+
validations:
51+
required: true
52+
- type: textarea
53+
attributes:
54+
label: Exceptions (if any)
55+
description: Include the exception you get when facing this issue.
56+
placeholder:
57+
validations:
58+
required: false
59+
- type: input
60+
attributes:
61+
label: .NET Version
62+
description: |
63+
Run `dotnet --version`
64+
validations:
65+
required: true
66+
- type: textarea
67+
attributes:
68+
label: Anything else?
69+
description: |
70+
- ASP.NET Core version:
71+
- The IDE (VS / VS Code/ VS4Mac) you're running on, and its version:
72+
- Include the output of `dotnet --info`:
73+
74+
Links? References? Anything that will give us more context about the issue you are encountering!
75+
76+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
77+
validations:
78+
required: false

ConsoleApp1.sln

Lines changed: 0 additions & 25 deletions
This file was deleted.

ConsoleApp1.slnx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<Solution>
2+
<Project Path="src/ConsoleApp1/ConsoleApp1.csproj" />
3+
</Solution>

src/ConsoleApp1/Program.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// See https://aka.ms/new-console-template for more information
22
Console.WriteLine("Hello, World!");
33

4-
5-
4+
main

0 commit comments

Comments
 (0)