-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntroductionToML.csproj
More file actions
24 lines (23 loc) · 866 Bytes
/
IntroductionToML.csproj
File metadata and controls
24 lines (23 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Compile Remove="IntroductionToMLML.ConsoleApp\**" />
<Compile Remove="IntroductionToMLML.Model\**" />
<EmbeddedResource Remove="IntroductionToMLML.ConsoleApp\**" />
<EmbeddedResource Remove="IntroductionToMLML.Model\**" />
<None Remove="IntroductionToMLML.ConsoleApp\**" />
<None Remove="IntroductionToMLML.Model\**" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="IntroductionToMLML.Model\IntroductionToMLML.Model.csproj" />
</ItemGroup>
</Project>