blob: 249287dba46508869e957ba02ba3b4f6c0a52815 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Content Include="input.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Compile Include="Program.fs" />
</ItemGroup>
</Project>
|