-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWeFax.csproj
34 lines (30 loc) · 1.2 KB
/
WeFax.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0-windows7.0</TargetFramework>
<RootNamespace>net.sictransit.wefax</RootNamespace>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<StartupObject>net.sictransit.wefax.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="NAudio.Core" Version="2.1.0" />
<PackageReference Include="Serilog" Version="2.11.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.2" />
</ItemGroup>
<ItemGroup>
<None Update="img\EIA_Resolution_Chart_1956.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="map.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="map.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="test_pattern_chart.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>