Skip to content

Commit 438c35a

Browse files
add icon and license files
1 parent 4b3261c commit 438c35a

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

Sources/LambdaConverters.Wpf/LambdaConverters.Wpf.csproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,13 @@
44
<TargetFrameworks>netcoreapp3.0;net46;net45</TargetFrameworks>
55
<UseWPF>true</UseWPF>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
7-
<AssemblyOriginatorKeyFile>Properties\LambdaConverters.public.snk</AssemblyOriginatorKeyFile>
8-
<DelaySign>true</DelaySign>
97
<PackageId>LambdaConverters</PackageId>
108
<Version>3.0.0</Version>
119
<Authors>Michael Damatov, Dimitri Enns, Alex Helms</Authors>
1210
<Description>The library allows to create IValueConverter, IMultiValueConverter, DataTemplateSelector, and ValidationRule objects with the most convenient syntax available, ideally, using the lambda expressions.</Description>
13-
<PackageLicenseUrl>https://github.com/michael-damatov/lambda-converters/blob/master/LICENSE</PackageLicenseUrl>
11+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1412
<PackageProjectUrl>https://github.com/michael-damatov/lambda-converters</PackageProjectUrl>
15-
<PackageIconUrl>https://raw.githubusercontent.com/michael-damatov/lambda-converters/master/Icon.png</PackageIconUrl>
13+
<PackageIcon>Icon.png</PackageIcon>
1614
<RepositoryUrl>https://github.com/michael-damatov/lambda-converters</RepositoryUrl>
1715
<PackageTags>lambda expression converter wpf strongly typed value multi data template selector validation rule</PackageTags>
1816
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -25,7 +23,10 @@
2523

2624
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2725
<DebugType>pdbonly</DebugType>
26+
<WarningsAsErrors />
27+
<AssemblyOriginatorKeyFile>Properties\LambdaConverters.public.snk</AssemblyOriginatorKeyFile>
2828
<SignAssembly>true</SignAssembly>
29+
<DelaySign>true</DelaySign>
2930
</PropertyGroup>
3031

3132
<ItemGroup Condition="'$(TargetFramework)' != 'netcoreapp3.0'">
@@ -34,6 +35,8 @@
3435
</ItemGroup>
3536

3637
<ItemGroup>
38+
<None Include="..\..\Icon.png" Pack="True" PackagePath="" />
39+
<None Include="..\..\LICENSE" Pack="True" PackagePath="" />
3740
<None Include="Properties\LambdaConverters.public.snk" />
3841
</ItemGroup>
3942

Sources/LambdaConverters.sln

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.26730.16
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29709.97
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Tests.Shared", "Tests.Shared\Tests.Shared.shproj", "{7278725E-263C-4232-8CCF-352AB6F23DC9}"
77
EndProject
@@ -11,7 +11,9 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests.LambdaConverters.Wpf"
1111
EndProject
1212
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6292D25D-C8E9-4DDE-B7F7-E3151E963C30}"
1313
ProjectSection(SolutionItems) = preProject
14+
..\Icon.png = ..\Icon.png
1415
LambdaConverters.sln.DotSettings = LambdaConverters.sln.DotSettings
16+
..\LICENSE = ..\LICENSE
1517
NuGet.exe = NuGet.exe
1618
EndProjectSection
1719
EndProject

0 commit comments

Comments
 (0)