forked from badvectors/ATISPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathATISPlugin.csproj
More file actions
40 lines (39 loc) · 1.47 KB
/
Copy pathATISPlugin.csproj
File metadata and controls
40 lines (39 loc) · 1.47 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<RootNamespace>ATISPlugin</RootNamespace>
<AssemblyName>ATISPlugin</AssemblyName>
<PlatformTarget>x86</PlatformTarget>
<ProgramFilesX86>$(MSBuildProgramFiles32)</ProgramFilesX86>
<BaseOutputPath>C:\Users\$(USERNAME)\OneDrive\Documents\vatSys Files\Profiles\Australia\Plugins\ATIS</BaseOutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="vatSys">
<HintPath>$(ProgramFilesX86)\vatSys\bin\vatSys.exe</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="VATSYSControls">
<HintPath>$(ProgramFilesX86)\vatSys\bin\VATSYSControls.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.Composition" />
<Reference Include="System.Configuration" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Speech" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Serialization" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="NAudio.WinForms" Version="2.2.1" />
</ItemGroup>
<ItemGroup>
<None Update="Version.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>