-
Notifications
You must be signed in to change notification settings - Fork 0
/
github-api-cli.fsproj
32 lines (32 loc) · 1.15 KB
/
github-api-cli.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>gapic</AssemblyName>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishTrimmed>true</PublishTrimmed>
<Version>0.0.2.0</Version>
</PropertyGroup>
<ItemGroup>
<Content Include=".config\dotnet-tools.json" />
<Content Include="Data\Users.json" />
<Compile Include="paket-files\CaptnCodr\FSharpExtensions\ResourceExtension.fs">
<Paket>True</Paket>
<Link>Resources/ResourceExtension.fs</Link>
</Compile>
<Compile Include="Resources\Resources.fs" />
<Compile Include="Arguments.fs" />
<Compile Include="Users.fs" />
<Compile Include="Program.fs" />
<None Include="paket.dependencies" />
<None Include="paket.references" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\Strings.resx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<Import Project=".paket\Paket.Restore.targets" />
</Project>