Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added .NET Core 3.1 projects to solution. #223

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions ImageListView.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27428.2005
# Visual Studio Version 16
VisualStudioVersion = 16.0.30105.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImageListView", "ImageListView\ImageListView.csproj", "{0C295FB8-C6C6-4A40-9F19-05A43F353A04}"
EndProject
Expand All @@ -22,6 +22,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
update nuget package.ps1 = update nuget package.ps1
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageListViewCore", "ImageListView\ImageListViewCore.csproj", "{D0ADA60D-03CF-4DE2-A109-99228E0539AD}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageListViewDemoCore", "ImageListViewDemo\ImageListViewDemoCore.csproj", "{38415F5D-A7B0-4885-BC4C-1E056C710008}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug without WPF|Any CPU = Debug without WPF|Any CPU
Expand Down Expand Up @@ -70,6 +74,22 @@ Global
{FE354FEF-85B4-4A5B-A130-7DD226A9B015}.Release without WPF|Any CPU.Build.0 = Release|Any CPU
{FE354FEF-85B4-4A5B-A130-7DD226A9B015}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FE354FEF-85B4-4A5B-A130-7DD226A9B015}.Release|Any CPU.Build.0 = Release|Any CPU
{D0ADA60D-03CF-4DE2-A109-99228E0539AD}.Debug without WPF|Any CPU.ActiveCfg = Debug|Any CPU
{D0ADA60D-03CF-4DE2-A109-99228E0539AD}.Debug without WPF|Any CPU.Build.0 = Debug|Any CPU
{D0ADA60D-03CF-4DE2-A109-99228E0539AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D0ADA60D-03CF-4DE2-A109-99228E0539AD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D0ADA60D-03CF-4DE2-A109-99228E0539AD}.Release without WPF|Any CPU.ActiveCfg = Release|Any CPU
{D0ADA60D-03CF-4DE2-A109-99228E0539AD}.Release without WPF|Any CPU.Build.0 = Release|Any CPU
{D0ADA60D-03CF-4DE2-A109-99228E0539AD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D0ADA60D-03CF-4DE2-A109-99228E0539AD}.Release|Any CPU.Build.0 = Release|Any CPU
{38415F5D-A7B0-4885-BC4C-1E056C710008}.Debug without WPF|Any CPU.ActiveCfg = Debug|Any CPU
{38415F5D-A7B0-4885-BC4C-1E056C710008}.Debug without WPF|Any CPU.Build.0 = Debug|Any CPU
{38415F5D-A7B0-4885-BC4C-1E056C710008}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{38415F5D-A7B0-4885-BC4C-1E056C710008}.Debug|Any CPU.Build.0 = Debug|Any CPU
{38415F5D-A7B0-4885-BC4C-1E056C710008}.Release without WPF|Any CPU.ActiveCfg = Release|Any CPU
{38415F5D-A7B0-4885-BC4C-1E056C710008}.Release without WPF|Any CPU.Build.0 = Release|Any CPU
{38415F5D-A7B0-4885-BC4C-1E056C710008}.Release|Any CPU.ActiveCfg = Release|Any CPU
{38415F5D-A7B0-4885-BC4C-1E056C710008}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
45 changes: 45 additions & 0 deletions ImageListView/ImageListViewCore.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<RootNamespace>Manina.Windows.Forms</RootNamespace>
</PropertyGroup>

<ItemGroup>
<Compile Remove="Properties\AssemblyInfo.cs" />
</ItemGroup>

<ItemGroup>
<None Remove="Resources\DefaultImage.png" />
<None Remove="Resources\DragDropCursor_Copy.cur" />
<None Remove="Resources\DragDropCursor_Move.cur" />
<None Remove="Resources\DragDropCursor_No.cur" />
<None Remove="Resources\EmptyRatingImage.png" />
<None Remove="Resources\ErrorImage.png" />
<None Remove="Resources\RatingImage.png" />
<None Remove="Resources\SortAscending.png" />
<None Remove="Resources\SortDescending.png" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="Resources\DefaultImage.png" />
<EmbeddedResource Include="Resources\DragDropCursor_Copy.cur" />
<EmbeddedResource Include="Resources\DragDropCursor_Move.cur" />
<EmbeddedResource Include="Resources\DragDropCursor_No.cur" />
<EmbeddedResource Include="Resources\EmptyRatingImage.png" />
<EmbeddedResource Include="Resources\ErrorImage.png" />
<EmbeddedResource Include="Resources\RatingImage.png" />
<EmbeddedResource Include="Resources\SortAscending.png" />
<EmbeddedResource Include="Resources\SortDescending.png" />
</ItemGroup>

<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.Resources.Extensions" Version="4.7.1" />
</ItemGroup>

</Project>
31 changes: 31 additions & 0 deletions ImageListViewDemo/ImageListViewDemoCore.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>

<ItemGroup>
<Compile Remove="Properties\AssemblyInfo.cs" />
<Compile Remove="Properties\Resources.Designer.cs" />
<Compile Remove="Properties\Settings.Designer.cs" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Remove="Properties\Resources.resx" />
</ItemGroup>

<ItemGroup>
<None Remove="Properties\Settings.settings" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\ImageListView\ImageListViewCore.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>

</Project>