-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint-server.fsproj
46 lines (41 loc) · 1.68 KB
/
print-server.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
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
<RootNamespace>PrintServer</RootNamespace>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<None Include="assets\templates\template.lbx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<Content Include="print-server.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Compile Include="Configuration.fs" />
<Compile Include="Bpac.fs" />
<Compile Include="Types.fs" />
<Compile Include="Attendee.fs" />
<Compile Include="Printer.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<COMReference Include="bpac">
<WrapperTool>tlbimp</WrapperTool>
<VersionMinor>3</VersionMinor>
<VersionMajor>1</VersionMajor>
<Guid>90359d74-b7d9-467f-b938-3883f4cab582</Guid>
<Lcid>0</Lcid>
<Isolated>false</Isolated>
<EmbedInteropTypes>False</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Argu" Version="6.2.4" />
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.17.2" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
</ItemGroup>
</Project>