Skip to content

Commit 2dd3376

Browse files
committed
Dropping broken things
1 parent af69d0a commit 2dd3376

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

GithubActionsHelloWorld.sln

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.31702.278
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GithubActionsHelloWorld", "GithubActionsHelloWorld\GithubActionsHelloWorld.csproj", "{61D51FF5-54B5-4D4D-8374-0476FF605F57}"
77
EndProject
@@ -10,6 +10,7 @@ EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A0700FEC-48D8-490C-8136-B200F4317767}"
1111
ProjectSection(SolutionItems) = preProject
1212
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
13+
README.md = README.md
1314
EndProjectSection
1415
EndProject
1516
Global

GithubActionsHelloWorld/AssemblyInfo.cs

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

GithubActionsHelloWorld/GithubActionsHelloWorld.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,19 @@
66
<Version Condition="'$(CURRENT_VERSION)' != ''">$(CURRENT_VERSION)</Version>
77
<Version Condition="'$(CURRENT_VERSION)' == ''">0.0.1</Version>
88
<AssemblyVersion>$(Version)</AssemblyVersion>
9-
<InformationalVersion>$(GitCommit)</InformationalVersion>
109
<FileVersion>$(Version)</FileVersion>
1110
<PackageVersion>$(Version)</PackageVersion>
11+
<InformationalVersion Condition="'$(GITHUB_SHA)' != ''">$(GITHUB_SHA)</InformationalVersion>
12+
<InformationalVersion Condition="'$(GITHUB_SHA)' == ''">DevBuild</InformationalVersion>
1213
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1314
<IncludeSymbols>true</IncludeSymbols>
1415
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1516
<PackageId>GithubActionsHelloWorld</PackageId>
1617
<PackageReleaseNotes>$(LAST_COMMIT_MESSAGE)</PackageReleaseNotes>
1718
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
18-
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
1919
</PropertyGroup>
2020

2121
<ItemGroup>
22-
<PackageReference Include="GitInfo" Version="2.2.0" />
2322
<PackageReference Include="SixLabors.ImageSharp" Version="2.0.0" />
2423
<PackageReference Include="ZXing.Net" Version="0.16.8" />
2524
</ItemGroup>

GithubActionsHelloWorldTests/GithubActionsHelloWorldTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class GithubActionsHelloWorldTest
99
[Fact]
1010
public async Task Main_ShouldRunWithoutError()
1111
{
12-
var args = new string[] { "WrongParameterCount" };
12+
var args = new string[] { "SomeParameter" };
1313
await Program.Main(args);
1414
}
1515
}

0 commit comments

Comments
 (0)