-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfsharplang.ru.fsproj
35 lines (35 loc) · 1.78 KB
/
fsharplang.ru.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<AssemblyName>fsharplang_ru</AssemblyName>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="XmlViewEngineHelpers.fs" />
<Compile Include="Models/*.fs" />
<Compile Include="Views/Navigation.fs" />
<Compile Include="Views/Jumbotron.fs" />
<Compile Include="Views/SourceCodeExamples.fs" />
<Compile Include="Views/WhyFsharp.fs" />
<Compile Include="Views/TryOnline.fs" />
<Compile Include="Views/Videos.fs" />
<Compile Include="Views/Scripts.fs" />
<Compile Include="Views/Footer.fs" />
<Compile Include="Views/Layout.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="2.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="2.0.*" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.0.*" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.0.*" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.0.*" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.0.*" />
<PackageReference Include="Giraffe" Version="0.1.0-beta-100" />
<PackageReference Include="Giraffe.Razor" Version="0.1.0-beta-100" />
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="2.0.0" />
</ItemGroup>
</Project>