Skip to content
This repository was archived by the owner on Apr 3, 2024. It is now read-only.

Commit 5272c9a

Browse files
Converted all 4 projects to .NET Core 2
1 parent 88a51d5 commit 5272c9a

File tree

9 files changed

+75
-117
lines changed

9 files changed

+75
-117
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,3 +250,6 @@ paket-files/
250250
# JetBrains Rider
251251
.idea/
252252
*.sln.iml
253+
254+
# Documents
255+
dox/output

src/1-AspNetCore-CSharp/Uno.csproj

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<AssemblyName>Uno</AssemblyName>
5+
<VersionPrefix>1.0.0</VersionPrefix>
6+
<OutputType>Exe</OutputType>
7+
<TargetFramework>netcoreapp2.0</TargetFramework>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="2.*" />
12+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.*" />
13+
</ItemGroup>
14+
15+
</Project>

src/1-AspNetCore-CSharp/project.json

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/2-Nancy-CSharp/Dos.csproj

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<AssemblyName>Dos</AssemblyName>
5+
<VersionPrefix>1.0.0</VersionPrefix>
6+
<OutputType>Exe</OutputType>
7+
<TargetFramework>netcoreapp2.0</TargetFramework>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="2.*" />
12+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.*" />
13+
<PackageReference Include="Nancy" Version="2.0.0-*" IncludePrerelease="true" />
14+
</ItemGroup>
15+
16+
</Project>

src/2-Nancy-CSharp/project.json

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/3-Nancy-FSharp/Tres.fsproj

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<AssemblyName>Tres</AssemblyName>
5+
<VersionPrefix>1.0.0</VersionPrefix>
6+
<OutputType>Exe</OutputType>
7+
<TargetFramework>netcoreapp2.0</TargetFramework>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<Compile Include="HomeModule.fs" />
12+
<Compile Include="App.fs" />
13+
</ItemGroup>
14+
15+
<ItemGroup>
16+
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="2.*" />
17+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.*" />
18+
<PackageReference Include="Nancy" Version="2.0.0-*" IncludePrerelease="true" />
19+
</ItemGroup>
20+
21+
</Project>

src/3-Nancy-FSharp/project.json

Lines changed: 0 additions & 33 deletions
This file was deleted.

src/4-Freya-FSharp/Quatro.fsproj

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<AssemblyName>Quatro</AssemblyName>
5+
<VersionPrefix>1.0.0</VersionPrefix>
6+
<OutputType>Exe</OutputType>
7+
<TargetFramework>netcoreapp2.0</TargetFramework>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<Compile Include="App.fs" />
12+
</ItemGroup>
13+
14+
<ItemGroup>
15+
<PackageReference Include="Freya" Version="4.0.0-alpha-*" IncludePrerelease="true" />
16+
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="2.*" />
17+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.*" />
18+
</ItemGroup>
19+
20+
</Project>

src/4-Freya-FSharp/project.json

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)