-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSuaveMusicStore.fsproj
32 lines (32 loc) · 1.11 KB
/
SuaveMusicStore.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net461</TargetFramework>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<Content Include="Site.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="logo.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="placeholder.gif">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="jquery.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="script.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Compile Include="Db.fs" />
<Compile Include="Path.fs" />
<Compile Include="Form.fs" />
<Compile Include="View.fs" />
<Compile Include="App.fs" />
<Content Include="app.config" />
</ItemGroup>
<Import Project="fsc.props" />
<Import Project=".paket\Paket.Restore.targets" />
</Project>