Skip to content

Commit d2c2234

Browse files
Update packages
1 parent 872751c commit d2c2234

File tree

10 files changed

+67
-18
lines changed

10 files changed

+67
-18
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"gitversion.tool": {
6-
"version": "5.5.1",
6+
"version": "5.7.0",
77
"commands": [
88
"dotnet-gitversion"
99
]

build/build.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Bullseye" Version="3.7.0" />
10-
<PackageReference Include="SimpleExec" Version="6.4.0" />
11-
<PackageReference Include="System.Text.Json" Version="5.0.1" />
9+
<PackageReference Include="Bullseye" Version="3.8.0" />
10+
<PackageReference Include="SimpleExec" Version="8.0.0" />
11+
<PackageReference Include="System.Text.Json" Version="5.0.2" />
1212
</ItemGroup>
1313

1414
</Project>

src/Prefab/templates/prefab/.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"gitversion.tool": {
6-
"version": "5.5.1",
6+
"version": "5.7.0",
77
"commands": [
88
"dotnet-gitversion"
99
]
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "nuget"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"

src/Prefab/templates/prefab/src/Prefab.sln renamed to src/Prefab/templates/prefab/Prefab.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 15
33
VisualStudioVersion = 15.0.26430.6
44
MinimumVisualStudioVersion = 10.0.40219.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Prefab", "Prefab\Prefab.csproj", "{31C88235-0C82-44A2-AE35-AC7724ACEEFA}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Prefab", "src\Prefab\Prefab.csproj", "{31C88235-0C82-44A2-AE35-AC7724ACEEFA}"
66
EndProject
7-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Prefab.Tests", "Prefab.Tests\Prefab.Tests.csproj", "{E89DA456-6703-4A7B-82D7-480560E52F52}"
7+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Prefab.Tests", "src\Prefab.Tests\Prefab.Tests.csproj", "{E89DA456-6703-4A7B-82D7-480560E52F52}"
88
EndProject
99
Global
1010
GlobalSection(SolutionConfigurationPlatforms) = preSolution

src/Prefab/templates/prefab/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Prefab
22

3-
[![NuGet](https://img.shields.io/nuget/v/Prefab?style=for-the-badge)](https://www.nuget.org/packages/Prefab) [![Build](https://img.shields.io/github/workflow/status/(owner)/Prefab/build?style=for-the-badge)](https://github.com/(owner)/Prefab/actions?query=workflow:build) [![License](https://img.shields.io/github/license/(owner)/Prefab?style=for-the-badge)](https://github.com/(owner)/Prefab/blob/master/LICENSE)
3+
[![Docs](https://img.shields.io/badge/docs-wiki-blue.svg?style=for-the-badge)](https://github.com/(owner)/Prefab/wiki) [![NuGet](https://img.shields.io/nuget/v/Prefab?style=for-the-badge)](https://www.nuget.org/packages/Prefab) [![Discussions](https://img.shields.io/badge/DISCUSS-ON%20GITHUB-yellow?style=for-the-badge)](https://github.com/(owner)/Prefab/discussions) [![License](https://img.shields.io/github/license/(owner)/Prefab?style=for-the-badge)](https://github.com/(owner)/Prefab/blob/master/LICENSE)
44

55
A thing that does something.
66

@@ -11,6 +11,14 @@ Install the package from NuGet with `dotnet add package Prefab`.
1111
Example code
1212
```
1313

14+
## Documentation
15+
See the [wiki](https://github.com/(owner)/Prefab/wiki) for examples and help using Prefab.
16+
17+
## Get in touch
18+
Discuss with us on [Discussions](https://github.com/(owner)/Prefab/discussions), or raise an [issue](https://github.com/(owner)/Prefab/issues).
19+
20+
[![Discussions](https://img.shields.io/badge/DISCUSS-ON%20GITHUB-yellow?style=for-the-badge)](https://github.com/(owner)/Prefab/discussions)
21+
1422
## Contributing
1523
Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to this project.
1624

src/Prefab/templates/prefab/build/build.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Bullseye" Version="3.7.0" />
10-
<PackageReference Include="SimpleExec" Version="6.4.0" />
11-
<PackageReference Include="System.Text.Json" Version="5.0.1" />
9+
<PackageReference Include="Bullseye" Version="3.8.0" />
10+
<PackageReference Include="SimpleExec" Version="8.0.0" />
11+
<PackageReference Include="System.Text.Json" Version="5.0.2" />
1212
</ItemGroup>
1313

1414
</Project>

src/Prefab/templates/prefab/src/Prefab.Tests/Prefab.Tests.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
5-
4+
<TargetFramework>net5.0</TargetFramework>
5+
<LangVersion>latest</LangVersion>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
1111
<PackageReference Include="xunit" Version="2.4.1" />
1212
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>
16-
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
1716
</ItemGroup>
1817

1918
<ItemGroup>
Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,31 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard1.0;netstandard2.0</TargetFrameworks>
54
<Version>1.0.0</Version>
6-
5+
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
6+
<LangVersion>latest</LangVersion>
7+
<Nullable>enable</Nullable>
78
<GenerateDocumentationFile>true</GenerateDocumentationFile>
89

910
<Authors>(author)</Authors>
1011
<Description>A thing that does something</Description>
11-
<PackageProjectUrl>https://github.com/(owner)/Prefab</PackageProjectUrl>
1212
<PackageLicenseExpression>MIT</PackageLicenseExpression>
13+
<PackageProjectUrl>https://github.com/(owner)/Prefab</PackageProjectUrl>
14+
<RepositoryUrl>https://github.com/(owner)/Prefab</RepositoryUrl>
15+
<RepositoryType>git</RepositoryType>
1316
<PackageTags></PackageTags>
17+
<PackageReadmeFile>README.md</PackageReadmeFile>
1418
</PropertyGroup>
1519

20+
<ItemGroup>
21+
<PackageReference Include="Roslynator.Analyzers" Version="3.2.2">
22+
<PrivateAssets>all</PrivateAssets>
23+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
24+
</PackageReference>
25+
</ItemGroup>
26+
27+
<ItemGroup>
28+
<None Include="README.md" Pack="true" PackagePath="\" />
29+
</ItemGroup>
30+
1631
</Project>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## About
2+
3+
A thing that does something.
4+
5+
## Usage
6+
Install the package from NuGet with `dotnet add package Prefab`.
7+
8+
```csharp
9+
Example code
10+
```
11+
12+
## Documentation
13+
See the [wiki](https://github.com/(owner)/Prefab/wiki) for examples and help using Prefab.
14+
15+
## Get in touch
16+
Discuss with us on [Discussions](https://github.com/(owner)/Prefab/discussions), or raise an [issue](https://github.com/(owner)/Prefab/issues).
17+
18+
[![Discussions](https://img.shields.io/badge/DISCUSS-ON%20GITHUB-yellow?style=for-the-badge)](https://github.com/(owner)/Prefab/discussions)
19+
20+
## Contributing
21+
Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to this project.

0 commit comments

Comments
 (0)