Skip to content

Commit

Permalink
Add TimestampAtribute to assemblies (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH authored Jan 31, 2022
1 parent cc7ebfb commit a9d012f
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 7 deletions.
4 changes: 4 additions & 0 deletions src/LinqKit.Core/LinqKit.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
<RepositoryUrl>https://github.com/scottksmith95/LINQKit</RepositoryUrl>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Timestamp" Version="1.0.2" />
</ItemGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<PathMap>$(MSBuildProjectDirectory)=/</PathMap>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
7 changes: 4 additions & 3 deletions src/LinqKit.EntityFramework/LinqKit.EntityFramework.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2021.2.0">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="JetBrains.Annotations" Version="2021.2.0">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Timestamp" Version="1.0.2" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.1" />
<PackageReference Include="Timestamp" Version="1.0.2" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.1" />
<PackageReference Include="Timestamp" Version="1.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2021.2.0">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="JetBrains.Annotations" Version="2021.2.0">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Timestamp" Version="1.0.2" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.0" />
<PackageReference Include="Timestamp" Version="1.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.0" />
<PackageReference Include="Timestamp" Version="1.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Timestamp" Version="1.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Z.EntityFramework.Classic" Version="7.0.40" />
<PackageReference Include="Timestamp" Version="1.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/LinqKit/LinqKit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<PackageReference Include="JetBrains.Annotations" Version="2021.2.0">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Timestamp" Version="1.0.2" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
Expand Down
2 changes: 1 addition & 1 deletion version.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<PatchVersion>0</PatchVersion>
<PatchVersion>1</PatchVersion>
</PropertyGroup>
</Project>

0 comments on commit a9d012f

Please sign in to comment.