Skip to content

Commit ada338f

Browse files
committed
upgrade common.build
1 parent f702e8f commit ada338f

9 files changed

Lines changed: 60 additions & 31 deletions

File tree

.idea/.idea.Common.Mod/.idea/jsonSchemas.xml

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.0
2+
**Other**
3+
- Upgrade `Common.Build` to `0.7.0`
4+
15
## 0.6.1
26
**Other**
37
- Move to GitHub

Common.Mod.Cake/Common.Mod.Cake.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<!-- NuGet References -->
1212
<ItemGroup>
13-
<PackageReference Include="Common.Build" Version="0.6.0"/>
13+
<PackageReference Include="Common.Build" Version="0.7.0" />
1414
<PackageReference Include="Common.Build.Generator" Version="0.6.0"/>
1515
</ItemGroup>
1616

Common.Mod.Common/buildConfig.json

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

Common.Mod.Generator/buildConfig.json

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

Common.Mod.Test/buildConfig.json

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

Common.Mod/buildConfig.json

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<img alt="Vintage Story Version Badge" src="https://img.shields.io/badge/vintage--story-1.21.6-%2391A357" />
88
<img alt=".NET Version Badge" src="https://img.shields.io/badge/dotnet-9.0-%236F419A" />
99
<a title="Common.Build" target="_blank" href="https://github.com/devpikachu/Common.Build">
10-
<img alt="Common.Build Badge" src="https://img.shields.io/badge/Common.Build-0.6.0-blue" />
10+
<img alt="Common.Build Badge" src="https://img.shields.io/badge/Common.Build-0.7.0-blue" />
1111
</a>
1212
<a title="CI Pipeline" target="_blank" href="https://github.com/devpikachu/Common.Mod/actions">
1313
<img alt="CI Status Badge" src="https://img.shields.io/github/check-runs/devpikachu/Common.Mod/main" />

buildConfig.json

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
{
2-
"$schema": "https://git.omni.ms/vintage-story-mods/common-build/raw/branch/main/schemas/solution.schema.json",
3-
"name": "CommonMod",
4-
"defaultProject": "Common.Mod"
2+
"$schema": "https://raw.githubusercontent.com/devpikachu/Common.Build/refs/tags/0.7.0/schemas/config.schema.json",
3+
"archiveName": "commonmod",
4+
"defaultProject": "Common.Mod",
5+
"projects": [
6+
{
7+
"name": "Common.Mod",
8+
"substitutionTargets": [
9+
"Common.Mod.csproj",
10+
"../Common.Mod.Common/Common.Mod.Common.csproj"
11+
]
12+
},
13+
{
14+
"name": "Common.Mod.Common",
15+
"archiveSuffix": "common",
16+
"substitutionTargets": [
17+
"Common.Mod.Common.csproj"
18+
]
19+
},
20+
{
21+
"name": "Common.Mod.Generator",
22+
"archiveSuffix": "generator",
23+
"substitutionTargets": [
24+
"Common.Mod.Generator.csproj"
25+
]
26+
},
27+
{
28+
"name": "Common.Mod.Test"
29+
}
30+
]
531
}

0 commit comments

Comments
 (0)