File tree Expand file tree Collapse file tree 23 files changed +308
-151
lines changed
IconConverterSample/Properties Expand file tree Collapse file tree 23 files changed +308
-151
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ The respository includes
1515* ** Samples:** For sample applications
1616* ** Docs:** For the documentations (in markdown format).
1717
18- The command lines installation options are: For the version ` 5.1.0 `
19- * ** .NET CLI:** dotnet add package DotNetProjects.SVGImage --version 5.1.0
20- * ** Package Manager:** NuGet\Install-Package DotNetProjects.SVGImage -Version 5.1.0
18+ The command lines installation options are: For the version ` 5.1.1 `
19+ * ** .NET CLI:** dotnet add package DotNetProjects.SVGImage --version 5.1.1
20+ * ** Package Manager:** NuGet\Install-Package DotNetProjects.SVGImage -Version 5.1.1
2121
22- For reference in projects use: For the version ` 5.1.0 `
22+ For reference in projects use: For the version ` 5.1.1 `
2323``` xml
24- <PackageReference Include =" DotNetProjects.SVGImage" Version =" 5.1.0 " />
24+ <PackageReference Include =" DotNetProjects.SVGImage" Version =" 5.1.1 " />
2525```
2626
2727## How to build
Original file line number Diff line number Diff line change 1- next-version : 5.1.0
1+ next-version : 5.1.1
Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ The respository includes
1515* ** Samples:** For sample applications
1616* ** Docs:** For the documentations (in markdown format).
1717
18- The command lines installation options are: For the version ` 5.1.0 `
19- * ** .NET CLI:** dotnet add package DotNetProjects.SVGImage --version 5.1.0
20- * ** Package Manager:** NuGet\Install-Package DotNetProjects.SVGImage -Version 5.1.0
18+ The command lines installation options are: For the version ` 5.1.1 `
19+ * ** .NET CLI:** dotnet add package DotNetProjects.SVGImage --version 5.1.1
20+ * ** Package Manager:** NuGet\Install-Package DotNetProjects.SVGImage -Version 5.1.1
2121
22- For reference in projects use: For the version ` 5.1.0 `
22+ For reference in projects use: For the version ` 5.1.1 `
2323``` xml
24- <PackageReference Include =" DotNetProjects.SVGImage" Version =" 5.1.0 " />
24+ <PackageReference Include =" DotNetProjects.SVGImage" Version =" 5.1.1 " />
2525```
2626
2727## How to build
Original file line number Diff line number Diff line change 3030 <PropertyGroup >
3131 <ApplicationIcon >ClipArtViewer.ico</ApplicationIcon >
3232 </PropertyGroup >
33+ <PropertyGroup >
34+ <DefineConstants Condition =" '$(TargetFramework)' == 'net40' " >$(DefineConstants);DOTNET40;NETFULL</DefineConstants >
35+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net45'))" >$(DefineConstants);DOTNET45;NETFULL</DefineConstants >
36+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net46'))" >$(DefineConstants);DOTNET46;NETFULL</DefineConstants >
37+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net47'))" >$(DefineConstants);DOTNET47;NETFULL</DefineConstants >
38+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net48'))" >$(DefineConstants);DOTNET48;NETFULL</DefineConstants >
39+ <DefineConstants Condition =" $(TargetFramework.StartsWith('netcore'))" >$(DefineConstants);NETCORE</DefineConstants >
40+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net6'))" >$(DefineConstants);NETCORE;NETNEXT</DefineConstants >
41+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net7'))" >$(DefineConstants);NETCORE;NETNEXT</DefineConstants >
42+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net8'))" >$(DefineConstants);NETCORE;NETNEXT</DefineConstants >
43+ </PropertyGroup >
3344 <ItemGroup >
3445 <ProjectReference Include =" ..\..\Source\SVGImage\DotNetProjects.SVGImage.csproj" />
3546 </ItemGroup >
Original file line number Diff line number Diff line change 44using System . Runtime . InteropServices ;
55using System . Windows ;
66
7+ #if NETNEXT
8+ [ assembly: System . Runtime . Versioning . SupportedOSPlatform ( "windows7.0" ) ]
9+ #endif
10+
711// General Information about an assembly is controlled through the following
812// set of attributes. Change these attribute values to modify the information
913// associated with an assembly.
Original file line number Diff line number Diff line change 2525 <PropertyGroup >
2626 <ApplicationIcon >CustomBrushesExample.ico</ApplicationIcon >
2727 </PropertyGroup >
28+ <PropertyGroup >
29+ <DefineConstants Condition =" '$(TargetFramework)' == 'net40' " >$(DefineConstants);DOTNET40;NETFULL</DefineConstants >
30+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net45'))" >$(DefineConstants);DOTNET45;NETFULL</DefineConstants >
31+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net46'))" >$(DefineConstants);DOTNET46;NETFULL</DefineConstants >
32+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net47'))" >$(DefineConstants);DOTNET47;NETFULL</DefineConstants >
33+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net48'))" >$(DefineConstants);DOTNET48;NETFULL</DefineConstants >
34+ <DefineConstants Condition =" $(TargetFramework.StartsWith('netcore'))" >$(DefineConstants);NETCORE</DefineConstants >
35+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net6'))" >$(DefineConstants);NETCORE;NETNEXT</DefineConstants >
36+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net7'))" >$(DefineConstants);NETCORE;NETNEXT</DefineConstants >
37+ <DefineConstants Condition =" $(TargetFramework.StartsWith('net8'))" >$(DefineConstants);NETCORE;NETNEXT</DefineConstants >
38+ </PropertyGroup >
2839 <ItemGroup >
2940 <ProjectReference Include =" ..\..\Source\SVGImage\DotNetProjects.SVGImage.csproj" />
3041 </ItemGroup >
Original file line number Diff line number Diff line change 44using System . Runtime . InteropServices ;
55using System . Windows ;
66
7+ #if NETNEXT
8+ [ assembly: System . Runtime . Versioning . SupportedOSPlatform ( "windows7.0" ) ]
9+ #endif
10+
711// General Information about an assembly is controlled through the following
812// set of attributes. Change these attribute values to modify the information
913// associated with an assembly.
Original file line number Diff line number Diff line change 44using System . Runtime . InteropServices ;
55using System . Windows ;
66
7+ #if NETNEXT
8+ [ assembly: System . Runtime . Versioning . SupportedOSPlatform ( "windows7.0" ) ]
9+ #endif
10+
711// General Information about an assembly is controlled through the following
812// set of attributes. Change these attribute values to modify the information
913// associated with an assembly.
Original file line number Diff line number Diff line change 44using System . Runtime . InteropServices ;
55using System . Windows ;
66
7+ #if NETNEXT
8+ [ assembly: System . Runtime . Versioning . SupportedOSPlatform ( "windows7.0" ) ]
9+ #endif
10+
711// General Information about an assembly is controlled through the following
812// set of attributes. Change these attribute values to modify the information
913// associated with an assembly.
Original file line number Diff line number Diff line change 1111 <Product >DotNetProjects.SVGImage</Product >
1212 <Copyright >2020-2023 DotNetProjects</Copyright >
1313 <PackageLicenseExpression >MIT</PackageLicenseExpression >
14- <AssemblyVersion >5.1.0 .0</AssemblyVersion >
15- <FileVersion >5.1.0 .0</FileVersion >
16- <Version >5.1.0 </Version >
14+ <AssemblyVersion >5.1.1 .0</AssemblyVersion >
15+ <FileVersion >5.1.1 .0</FileVersion >
16+ <Version >5.1.1 </Version >
1717 <OutputType >Library</OutputType >
1818 <Configurations >Debug;Release</Configurations >
1919 </PropertyGroup >
3131 <PackageReadmeFile >Readme.md</PackageReadmeFile >
3232 <EnablePackageValidation >true</EnablePackageValidation >
3333 <!-- NOTE: Detect breaking changes from a previous version -->
34- <PackageValidationBaselineVersion >5.0.118 </PackageValidationBaselineVersion >
34+ <PackageValidationBaselineVersion >5.1.0 </PackageValidationBaselineVersion >
3535 </PropertyGroup >
3636
3737 <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
You can’t perform that action at this time.
0 commit comments