Skip to content

Commit 52d846d

Browse files
committed
Standardize repo structure
1 parent 4531d02 commit 52d846d

13 files changed

Lines changed: 61 additions & 257 deletions

File tree

.github/ISSUE_TEMPLATE/bug-report.yml

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

.github/ISSUE_TEMPLATE/config.yml

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

.github/ISSUE_TEMPLATE/feature-request.yml

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

.github/release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
changelog:
2+
exclude:
3+
authors:
4+
- dependabot
5+
- dependabot[bot]
6+
7+
categories:
8+
- title: Enhancements
9+
labels:
10+
- enhancement
11+
12+
- title: Bugs
13+
labels:
14+
- bug
15+
16+
- title: Other
17+
labels:
18+
- "*"

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ on:
2424
jobs:
2525
main:
2626
uses: Tyrrrz/.github/.github/workflows/nuget.yml@prime
27+
permissions:
28+
actions: write
29+
contents: write
2730
with:
2831
deploy: ${{ inputs.deploy || github.ref_type == 'tag' }}
2932
package-version: ${{ inputs.package-version || (github.ref_type == 'tag' && github.ref_name) || format('0.0.0-ci-{0}', github.sha) }}

CliFx.Benchmarks/CliFx.Benchmarks.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20-
<ProjectReference Include="..\CliFx\CliFx.csproj" />
20+
<ProjectReference Include="../CliFx/CliFx.csproj" />
2121
<ProjectReference
22-
Include="..\CliFx.Generators\CliFx.Generators.csproj"
22+
Include="../CliFx.Generators/CliFx.Generators.csproj"
2323
ReferenceOutputAssembly="false"
2424
OutputItemType="analyzer"
2525
/>

CliFx.Demo/CliFx.Demo.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<ProjectReference Include="..\CliFx\CliFx.csproj" />
16+
<ProjectReference Include="../CliFx/CliFx.csproj" />
1717
<ProjectReference
18-
Include="..\CliFx.Generators\CliFx.Generators.csproj"
18+
Include="../CliFx.Generators/CliFx.Generators.csproj"
1919
ReferenceOutputAssembly="false"
2020
OutputItemType="analyzer"
2121
/>

CliFx.Tests.Dummy/CliFx.Tests.Dummy.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
</ItemGroup>
1111

1212
<ItemGroup>
13-
<ProjectReference Include="..\CliFx\CliFx.csproj" />
13+
<ProjectReference Include="../CliFx/CliFx.csproj" />
1414
<ProjectReference
15-
Include="..\CliFx.Generators\CliFx.Generators.csproj"
15+
Include="../CliFx.Generators/CliFx.Generators.csproj"
1616
ReferenceOutputAssembly="false"
1717
OutputItemType="analyzer"
1818
/>

CliFx.Tests/CliFx.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
</ItemGroup>
2525

2626
<ItemGroup>
27-
<ProjectReference Include="..\CliFx.Tests.Dummy\CliFx.Tests.Dummy.csproj" />
28-
<ProjectReference Include="..\CliFx\CliFx.csproj" />
27+
<ProjectReference Include="../CliFx.Tests.Dummy/CliFx.Tests.Dummy.csproj" />
28+
<ProjectReference Include="../CliFx/CliFx.csproj" />
2929
<ProjectReference
30-
Include="..\CliFx.Generators\CliFx.Generators.csproj"
30+
Include="../CliFx.Generators/CliFx.Generators.csproj"
3131
OutputItemType="analyzer"
3232
/>
3333
</ItemGroup>

CliFx.sln

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

0 commit comments

Comments
 (0)