Skip to content

Commit 43143b3

Browse files
committed
Added reproducible builds package
1 parent f09ded9 commit 43143b3

4 files changed

Lines changed: 16 additions & 3 deletions

File tree

src/Directory.Build.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<Project>
2+
<Sdk Name="DotNet.ReproducibleBuilds.Isolated" Version="0.1.64" />
3+
<ItemGroup>
4+
<PackageReference Include="DotNet.ReproducibleBuilds" Version="0.1.64" PrivateAssets="All"/>
5+
</ItemGroup>
6+
</Project>

src/MagicTooltips.Logging/MagicTooltips.Logging.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9+
<PackageReference Include="DotNet.ReproducibleBuilds" Version="0.1.64">
10+
<PrivateAssets>all</PrivateAssets>
11+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
12+
</PackageReference>
913
<PackageReference Include="Karambolo.Extensions.Logging.File" Version="3.2.0" />
1014
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="2.17.0" />
1115
</ItemGroup>

src/MagicTooltips.sln

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,19 @@ EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B0DB5D91-5CC8-4701-AD0A-B5838E1B91A5}"
1111
ProjectSection(SolutionItems) = preProject
1212
..\.gitignore = ..\.gitignore
13+
Directory.Build.props = Directory.Build.props
1314
..\README.md = ..\README.md
1415
EndProjectSection
1516
EndProject
1617
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{577D3479-F735-4166-95F5-7E62BBC952B1}"
1718
ProjectSection(SolutionItems) = preProject
18-
deploy.ps1 = deploy.ps1
1919
..\.github\workflows\deploy.ps1 = ..\.github\workflows\deploy.ps1
20-
deploy.yml = deploy.yml
2120
..\.github\workflows\deploy.yml = ..\.github\workflows\deploy.yml
2221
..\.github\workflows\publish.ps1 = ..\.github\workflows\publish.ps1
2322
..\.github\workflows\release.yml = ..\.github\workflows\release.yml
2423
EndProjectSection
2524
EndProject
26-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MagicTooltips.Logging", "MagicTooltips.Logging\MagicTooltips.Logging.csproj", "{82B49079-B1C0-495F-BFC3-C5EB205019B7}"
25+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MagicTooltips.Logging", "MagicTooltips.Logging\MagicTooltips.Logging.csproj", "{82B49079-B1C0-495F-BFC3-C5EB205019B7}"
2726
EndProject
2827
Global
2928
GlobalSection(SolutionConfigurationPlatforms) = preSolution

src/MagicTooltips/MagicTooltips.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
</ItemGroup>
1212

1313
<ItemGroup>
14+
<PackageReference Include="DotNet.ReproducibleBuilds" Version="0.1.64">
15+
<PrivateAssets>all</PrivateAssets>
16+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
17+
</PackageReference>
1418
<PackageReference Include="PowerShellStandard.Library" Version="7.0.0-preview.1">
1519
<PrivateAssets>All</PrivateAssets>
1620
</PackageReference>

0 commit comments

Comments
 (0)