-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDirectory.Build.props
28 lines (26 loc) · 1.34 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir>
<BaseIntermediateOutputPath>$(SolutionDir)obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<OutputPath>$(SolutionDir)bin\$(MSBuildProjectName)\$(Configuration)\</OutputPath>
<LangVersion>latest</LangVersion>
<Platforms>x64;x86;arm64</Platforms>
<WinPlatformVersion>10.0.18362.0</WinPlatformVersion>
<TargetFramework>net6.0-windows$(WinPlatformVersion)</TargetFramework>
<TargetPlatformVersion>$(WinPlatformVersion)</TargetPlatformVersion>
<TargetPlatformMinVersion>$(WinPlatformVersion)</TargetPlatformMinVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup>
<Copyright>© 2021 Jose Torres. All rights reserved.</Copyright>
<Authors>Jose Torres</Authors>
<Description>Audio Device Switcher is a Windows 10 app that makes it easy to quickly switch your default audio device.</Description>
<Version>$(NBGV_Version)</Version>
<AssemblyVersion>$(NBGV_AssemblyVersion)</AssemblyVersion>
<AssemblyFileVersion>$(NBGV_AssemblyFileVersion)</AssemblyFileVersion>
<AssemblyInformationalVersion>$(NBGV_AssemblyInformationalVersion)</AssemblyInformationalVersion>
</PropertyGroup>
</Project>