-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAVRControl.csproj
More file actions
38 lines (38 loc) · 1.35 KB
/
Copy pathAVRControl.csproj
File metadata and controls
38 lines (38 loc) · 1.35 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows7.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>AVRControl</RootNamespace>
<AssemblyName>AVRControl</AssemblyName>
<ApplicationIcon>AVRControl.ico</ApplicationIcon>
<Deterministic>true</Deterministic>
<Version>1.7.0.0</Version>
<Authors>SAMDestroy</Authors>
<Company>SAMDestroy</Company>
<Product>AVRControl</Product>
<Description>Control your Denon or Marantz AVR via Telnet</Description>
<Copyright>Copyright © 2026 SAMDestroy</Copyright>
<ComVisible>false</ComVisible>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
</PropertyGroup>
<ItemGroup>
<Compile Update="AVRControl.*.cs">
<DependentUpon>AVRControl.cs</DependentUpon>
</Compile>
<Compile Update="AVRControl.cs">
<SubType>Form</SubType>
</Compile>
<EmbeddedResource Update="AVRControl.resx">
<DependentUpon>AVRControl.Designer.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<EditorConfigFiles Remove="C:\Users\octal\source\repos\AVRControl\.editorconfig" />
</ItemGroup>
<ItemGroup>
<None Include="C:\Users\octal\source\repos\AVRControl\.editorconfig" />
</ItemGroup>
</Project>