Skip to content

Commit

Permalink
imp - Roll out deterministic source directory
Browse files Browse the repository at this point in the history
---

The deterministic source directory is necessary for reproducible builds.

---

Type: imp
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Jan 21, 2025
1 parent 440103a commit cf3f55f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@
<Copyright>Copyright (c) 2023-2025 Aptivi</Copyright>
<LangVersion>latest</LangVersion>
<DebugType>portable</DebugType>
<SignAssembly>True</SignAssembly>
<Nullable>enable</Nullable>
<SignAssembly>True</SignAssembly>
<WarningsAsErrors>CS9057,CS8002,nullable</WarningsAsErrors>
<EnableSourceControlManagerQueries>true</EnableSourceControlManagerQueries>
<RootPath>$(MSBuildThisFileDirectory)</RootPath>
<AssemblyOriginatorKeyFile>$(RootPath)\aptivi_snk.snk</AssemblyOriginatorKeyFile>
<Deterministic>true</Deterministic>
<DeterministicSourcePaths>true</DeterministicSourcePaths>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -21,4 +24,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
</ItemGroup>
</Project>

0 comments on commit cf3f55f

Please sign in to comment.