Skip to content

Commit

Permalink
Add and utilize Directory.Build.props
Browse files Browse the repository at this point in the history
  • Loading branch information
Kritner committed Oct 10, 2018
1 parent 59cf8af commit d4ebab3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<Project>

<PropertyGroup>
<NuGet-Kritner-SolarProjection>1.0.2</NuGet-Kritner-SolarProjection>
</PropertyGroup>

</Project>
2 changes: 1 addition & 1 deletion src/ClassLibrary1/ClassLibrary1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Kritner.SolarProjection" Version="1.0.0" />
<PackageReference Include="Kritner.SolarProjection" Version="$(NuGet-Kritner-SolarProjection)" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/ClassLibrary2/ClassLibrary2.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Kritner.SolarProjection" Version="1.0.0" />
<PackageReference Include="Kritner.SolarProjection" Version="$(NuGet-Kritner-SolarProjection)" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/ClassLibrary3/ClassLibrary3.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Kritner.SolarProjection" Version="1.0.0" />
<PackageReference Include="Kritner.SolarProjection" Version="$(NuGet-Kritner-SolarProjection)" />
</ItemGroup>

</Project>

0 comments on commit d4ebab3

Please sign in to comment.