Skip to content

Commit

Permalink
Added missing fsproj
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinmoris committed Aug 12, 2017
1 parent c65b2bf commit 4200a79
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions samples/IdentityApp/IdentityApp/IdentityApp.fsproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<Project Sdk="FSharp.NET.Sdk;Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<DebugType>portable</DebugType>
<AssemblyName>IdentityApp</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>IdentityApp</PackageId>
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
<EnableDefaultContentItems>false</EnableDefaultContentItems>
<RunWorkingDirectory>$(MSBuildThisFileDirectory)</RunWorkingDirectory>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FSharp.Core" Version="4.1.*" />
<PackageReference Include="FSharp.NET.Sdk" Version="1.0.*" PrivateAssets="All" />
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="1.1.*" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.1.*" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.*" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.*" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="1.1.*" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.*" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.*" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.1.*" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="1.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="1.1.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\src\Giraffe\Giraffe.fsproj" />
</ItemGroup>

<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>

</Project>

0 comments on commit 4200a79

Please sign in to comment.