-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathVolumeControl.Log.csproj
20 lines (20 loc) · 1.09 KB
/
VolumeControl.Log.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Configurations>Debug;Release;SDK</Configurations>
<Authors>radj307</Authors>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<Version>6.7.0-rc2</Version>
<FileVersion>6.7.0</FileVersion>
<Copyright>Copyright © 2022-2024 by $(Authors)</Copyright>
<DocumentationFile>../publish/$(MSBuildProjectName).xml</DocumentationFile>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="echo F|xcopy /y "$(TargetDir)$(ProjectName).dll" "..\publish\SDK\"
echo F|xcopy /y "$(TargetDir)$(ProjectName).pdb" "..\publish\SDK\"
echo F|xcopy /y "$(TargetDir)$(ProjectName).xml" "..\publish\SDK\"" />
</Target>
</Project>