-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCodingteam.Site.fsproj
More file actions
29 lines (27 loc) · 1.32 KB
/
Codingteam.Site.fsproj
File metadata and controls
29 lines (27 loc) · 1.32 KB
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Version>1.2.1</Version>
</PropertyGroup>
<Target Name="DownloadLogo" BeforeTargets="Build"
Inputs="$(MSBuildThisFile)"
Outputs="wwwroot\images\logo-transparent-dark.svg">
<Message Text="Downloading logo…" Importance="high" />
<DownloadFile SourceUrl="https://raw.githubusercontent.com/codingteam/logo/1.0.0/logo-transparent-dark.svg"
DestinationFolder="wwwroot\images"
DestinationFileName="logo-transparent-dark.svg" />
<Message Text="Verifying logo…" Importance="high" />
<VerifyFileHash File="wwwroot\images\logo-transparent-dark.svg"
Hash="D46E4BAB19D15F209307B5AAA9CA65BEC7CCDF1EBDA039365D2D24C05FCC15E88BD6ABBE701B445DDC596516C4EA6BB9CB97396E44813BCC5FDBAB7AB0A734F3"
Algorithm="SHA512"/>
</Target>
<ItemGroup>
<Compile Include="Controllers\HomeController.fs" />
<Compile Include="Startup.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="10.0.3" />
</ItemGroup>
</Project>