Skip to content

Commit 69d8f8f

Browse files
committed
Fix issues with packing solution
1 parent ed7e167 commit 69d8f8f

5 files changed

Lines changed: 31 additions & 12 deletions

File tree

AutoMapper.Collection.sln

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{578F2483-CF08-409D-A316-31BCB7C5D9D0}"
77
ProjectSection(SolutionItems) = preProject
88
Build.ps1 = Build.ps1
9+
.github\workflows\ci.yml = .github\workflows\ci.yml
910
Directory.Build.props = Directory.Build.props
1011
global.json = global.json
12+
icon.png = icon.png
1113
Push.ps1 = Push.ps1
1214
README.md = README.md
13-
version.props = version.props
14-
.github\workflows\ci.yml = .github\workflows\ci.yml
1515
.github\workflows\release.yml = .github\workflows\release.yml
16+
version.props = version.props
1617
EndProjectSection
1718
EndProject
1819
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutoMapper.Collection", "src\AutoMapper.Collection\AutoMapper.Collection.csproj", "{37AD667A-8080-476C-88FD-20310AC7CAF3}"

icon.png

1.63 KB
Loading

src/AutoMapper.Collection.EntityFramework/AutoMapper.Collection.EntityFramework.csproj

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,22 @@
66
<TargetFrameworks>net461;netstandard2.1</TargetFrameworks>
77
<AssemblyName>AutoMapper.Collection.EntityFramework</AssemblyName>
88
<PackageId>AutoMapper.Collection.EntityFramework</PackageId>
9-
<PackageIconUrl>https://s3.amazonaws.com/automapper/icon.png</PackageIconUrl>
9+
<PackageIcon>icon.png</PackageIcon>
1010
<PackageProjectUrl>https://github.com/AutoMapper/Automapper.Collection</PackageProjectUrl>
11-
<PackageLicenseUrl>https://github.com/AutoMapper/AutoMapper.Collection/blob/master/LICENSE.txt</PackageLicenseUrl>
1211
<AssemblyOriginatorKeyFile>../Key.snk</AssemblyOriginatorKeyFile>
12+
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
13+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1314
<SignAssembly>true</SignAssembly>
14-
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
15+
<IncludeSymbols>true</IncludeSymbols>
16+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
17+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
18+
<Deterministic>true</Deterministic>
1519
</PropertyGroup>
1620

21+
<ItemGroup>
22+
<None Include="..\..\icon.png" Pack="true" PackagePath="" />
23+
</ItemGroup>
24+
1725
<ItemGroup>
1826
<ProjectReference Include="..\AutoMapper.Collection\AutoMapper.Collection.csproj" />
1927
</ItemGroup>

src/AutoMapper.Collection.LinqToSQL/AutoMapper.Collection.LinqToSQL.csproj

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,22 @@
66
<TargetFramework>net461</TargetFramework>
77
<AssemblyName>AutoMapper.Collection.LinqToSQL</AssemblyName>
88
<PackageId>AutoMapper.Collection.LinqToSQL</PackageId>
9-
<PackageIconUrl>https://s3.amazonaws.com/automapper/icon.png</PackageIconUrl>
9+
<PackageIcon>icon.png</PackageIcon>
1010
<PackageProjectUrl>https://github.com/AutoMapper/Automapper.Collection</PackageProjectUrl>
11-
<PackageLicenseUrl>https://github.com/AutoMapper/AutoMapper.Collection/blob/master/LICENSE.txt</PackageLicenseUrl>
1211
<AssemblyOriginatorKeyFile>../Key.snk</AssemblyOriginatorKeyFile>
12+
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
13+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1314
<SignAssembly>true</SignAssembly>
14-
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
15+
<IncludeSymbols>true</IncludeSymbols>
16+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
17+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
18+
<Deterministic>true</Deterministic>
1519
</PropertyGroup>
1620

21+
<ItemGroup>
22+
<None Include="..\..\icon.png" Pack="true" PackagePath="" />
23+
</ItemGroup>
24+
1725
<ItemGroup>
1826
<ProjectReference Include="..\AutoMapper.Collection\AutoMapper.Collection.csproj" />
1927
</ItemGroup>

src/AutoMapper.Collection/AutoMapper.Collection.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,23 @@
66
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
77
<AssemblyName>AutoMapper.Collection</AssemblyName>
88
<PackageId>AutoMapper.Collection</PackageId>
9-
<PackageIconUrl>https://s3.amazonaws.com/automapper/icon.png</PackageIconUrl>
9+
<PackageIcon>icon.png</PackageIcon>
1010
<PackageProjectUrl>https://github.com/AutoMapper/Automapper.Collection</PackageProjectUrl>
11-
<PackageLicenseUrl>https://github.com/AutoMapper/AutoMapper.Collection/blob/master/LICENSE.txt</PackageLicenseUrl>
1211
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.1' ">$(PackageTargetFallback);portable-net45+win8+dnxcore50;portable-net45+win8</PackageTargetFallback>
1312
<AssemblyOriginatorKeyFile>../Key.snk</AssemblyOriginatorKeyFile>
13+
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1515
<SignAssembly>true</SignAssembly>
1616
<IncludeSymbols>true</IncludeSymbols>
17-
<MinVerTagPrefix>v</MinVerTagPrefix>
1817
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1918
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2019
<Deterministic>true</Deterministic>
21-
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
2220
</PropertyGroup>
2321

22+
<ItemGroup>
23+
<None Include="..\..\icon.png" Pack="true" PackagePath="" />
24+
</ItemGroup>
25+
2426
<ItemGroup>
2527
<PackageReference Include="AutoMapper" Version="[10.0.0, 11.0.0)" />
2628
</ItemGroup>

0 commit comments

Comments
 (0)