Skip to content

Commit

Permalink
Update project versions and add Stacktrace.props to Includes.props
Browse files Browse the repository at this point in the history
Increased project version numbers. Added Stacktrace.props to the Includes.props file for importing. Created a new Stacktrace.props file with deterministic source paths setting.
  • Loading branch information
adambajguz committed Nov 14, 2024
1 parent 35a116f commit 610c3bf
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<Version>1.0.0-dev-00014</Version>
<Version>1.0.0-dev-00015</Version>
<Author>PackSite</Author>
<Company>PackSite</Company>
<Copyright>
Expand Down
3 changes: 2 additions & 1 deletion src/PackSite.Library.Pipelining.sln
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# 17
# Visual Studio Version 17
VisualStudioVersion = 17.7.34009.444
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Configuration", "Configuration", "{F61F50C9-6428-4BE7-AE39-DF333029D19E}"
Expand Down Expand Up @@ -62,6 +62,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "props", "props", "{C2F5D802
props\Analyzers.props = props\Analyzers.props
props\Includes.props = props\Includes.props
props\PackSite.Libraries.props = props\PackSite.Libraries.props
props\Stacktrace.props = props\Stacktrace.props
EndProjectSection
EndProject
Global
Expand Down
1 change: 1 addition & 0 deletions src/props/Includes.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<ImportGroup>
<Import Project="Analyzers.props" Condition="Exists('Analyzers.props')" />
<Import Project="Stacktrace.props" Condition="Exists('Stacktrace.props')" />
<Import Project="PackSite.Libraries.props" Condition="Exists('PackSite.Libraries.props')" />
<Import Project="PackSite/PackSite.Libraries.props" Condition="Exists('PackSite/PackSite.Libraries.props')" />
</ImportGroup>
Expand Down
7 changes: 7 additions & 0 deletions src/props/Stacktrace.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<Project>

<PropertyGroup>
<DeterministicSourcePaths>true</DeterministicSourcePaths>
</PropertyGroup>

</Project>

0 comments on commit 610c3bf

Please sign in to comment.