Skip to content

Commit 8ca0bc1

Browse files
Update csproj and versioning
1 parent a30670b commit 8ca0bc1

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

GitVersion.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
mode: ContinuousDelivery
2-
commit-message-incrementing: Disabled
1+
workflow: GitHubFlow/v1
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
mode: ContinuousDelivery
2-
commit-message-incrementing: Disabled
1+
workflow: GitHubFlow/v1

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
78
<IsPackable>false</IsPackable>
89
</PropertyGroup>
910

@@ -20,4 +21,8 @@
2021
<ProjectReference Include="..\Prefab\Prefab.csproj" />
2122
</ItemGroup>
2223

24+
<ItemGroup>
25+
<Using Include="Xunit" />
26+
</ItemGroup>
27+
2328
</Project>

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>1.0.0</Version>
54
<TargetFrameworks>netstandard2.1</TargetFrameworks>
65
<LangVersion>latest</LangVersion>
76
<ImplicitUsings>enable</ImplicitUsings>
87
<Nullable>enable</Nullable>
98
<GenerateDocumentationFile>true</GenerateDocumentationFile>
9+
</PropertyGroup>
1010

11+
<PropertyGroup>
1112
<Authors>(author)</Authors>
1213
<Description>A thing that does something</Description>
1314
<PackageLicenseExpression>MIT</PackageLicenseExpression>

0 commit comments

Comments
 (0)