Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ jobs:

- name: Test
run: dotnet test --no-build --no-restore --verbosity normal --configuration Release

- name: Pack
run: dotnet pack --configuration Release -o /tmp/nupkgs -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg
3 changes: 0 additions & 3 deletions GitVersion.yml

This file was deleted.

3 changes: 3 additions & 0 deletions ProjectDiff.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProjectDiff.Core", "src\ProjectDiff.Core\ProjectDiff.Core.csproj", "{D4372350-2512-42C1-BD51-1C8635F63E1A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{D1BF8E7B-2C86-4632-BB75-16AC8755C9D1}"
ProjectSection(SolutionItems) = preProject
src\Directory.Build.props = src\Directory.Build.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{3BE889F7-7E1F-4FB0-B257-F85C176A5443}"
EndProject
Expand Down
4 changes: 4 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,8 @@
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<PropertyGroup>
<MinVerTagPrefix>v</MinVerTagPrefix>
</PropertyGroup>
</Project>
Loading