Merge pull request #22 from telerik/hristo/ERP-netcore
Migrate the ERP app to NetCore
This commit is contained in:
Коммит
037f30c00c
|
@ -0,0 +1,31 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net8.0-windows</TargetFramework>
|
||||
<AssemblyName>ERP.Client</AssemblyName>
|
||||
<RootNamespace>ERP.Client</RootNamespace>
|
||||
<Nullable>enable</Nullable>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="ViewModels\**" />
|
||||
<EmbeddedResource Remove="ViewModels\**" />
|
||||
<None Remove="ViewModels\**" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="UI.for.WinForms.AllControls.Net80" Version="2024.3.806" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\ERP.Repository\ERP.Repository.NetCore.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
|
@ -5,6 +5,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Forms;
|
||||
using Telerik.WinControls;
|
||||
using Telerik.WinControls.UI;
|
||||
using Telerik.WinControls.UI.Map.Bing;
|
||||
|
||||
|
|
|
@ -0,0 +1,37 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.12.35323.107
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ERP.Client.NetCore", "ERP.Client\ERP.Client.NetCore.csproj", "{8800D66A-893F-4415-8DA0-EC2E14583BA1}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ERP.Service.NetCore", "ERP.Service\ERP.Service.NetCore.csproj", "{5EC56BDC-6282-4FA0-B5F7-9043389E2BA7}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ERP.Repository.NetCore", "ERP.Repository\ERP.Repository.NetCore.csproj", "{193EBD80-5C14-4198-A35B-5C4EF1AF9620}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{8800D66A-893F-4415-8DA0-EC2E14583BA1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{8800D66A-893F-4415-8DA0-EC2E14583BA1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{8800D66A-893F-4415-8DA0-EC2E14583BA1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{8800D66A-893F-4415-8DA0-EC2E14583BA1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{5EC56BDC-6282-4FA0-B5F7-9043389E2BA7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{5EC56BDC-6282-4FA0-B5F7-9043389E2BA7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{5EC56BDC-6282-4FA0-B5F7-9043389E2BA7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{5EC56BDC-6282-4FA0-B5F7-9043389E2BA7}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{193EBD80-5C14-4198-A35B-5C4EF1AF9620}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{193EBD80-5C14-4198-A35B-5C4EF1AF9620}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{193EBD80-5C14-4198-A35B-5C4EF1AF9620}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{193EBD80-5C14-4198-A35B-5C4EF1AF9620}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {867313EA-86C2-4A5B-975C-A28E99CC65BE}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
|
@ -0,0 +1,19 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<AssemblyName>ERP.Repository</AssemblyName>
|
||||
<RootNamespace>ERP.Repository</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\ERP.Service\ERP.Service.NetCore.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
|
@ -0,0 +1,25 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.1</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<AssemblyName>ERP.Service</AssemblyName>
|
||||
<RootNamespace>ERP.Service</RootNamespace>
|
||||
<LangVersion>preview</LangVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="EntityFramework" Version="6.4.4" />
|
||||
<PackageReference Include="Microsoft.OData.EntityFrameworkProvider" Version="1.0.0-beta2" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Properties\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
Загрузка…
Ссылка в новой задаче