-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathATISPlugin.csproj
More file actions
50 lines (49 loc) · 1.81 KB
/
Copy pathATISPlugin.csproj
File metadata and controls
50 lines (49 loc) · 1.81 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
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<RootNamespace>ATISPlugin</RootNamespace>
<AssemblyName>ATISPlugin</AssemblyName>
<PlatformTarget>x86</PlatformTarget>
<ProgramFilesX86>$(MSBuildProgramFiles32)</ProgramFilesX86>
<BaseOutputPath>C:\Users\ajdun\Documents\vatSys Files\Profiles\Australia\Plugins</BaseOutputPath>
<AssemblyVersion>3.24</AssemblyVersion>
<FileVersion>3.24</FileVersion>
</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>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>