Skip to content
Snippets Groups Projects
Commit be55147c authored by Cserép Máté's avatar Cserép Máté
Browse files

Made Model an ViewModel projects class libraries.

parent cb8796e8
No related branches found
No related tags found
No related merge requests found
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputType>Library</OutputType>
<TargetFramework>net5.0</TargetFramework>
<ApplicationIcon />
<StartupObject />
</PropertyGroup>
<ItemGroup>
......
using System;
namespace CSIP42.ThemePark.Model
{
class Program
{
static void Main()
{
Console.WriteLine("Model says hello");
}
}
}
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<OutputType>Library</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<RootNamespace>CSIP_42.ThemePark.ViewModel</RootNamespace>
<UseWPF>true</UseWPF>
<ApplicationIcon />
<StartupObject />
</PropertyGroup>
<ItemGroup>
......
using System;
namespace CSIP_42.ThemePark.ViewModel
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment