Skip to content

Commit 03b4f44

Browse files
committed
Make sure AudioPlugSharp nuget copies dll to output directory
1 parent e3a341b commit 03b4f44

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

AudioPlugSharp/AudioPlugSharp.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
55
<OutputType>Library</OutputType>
6-
<Version>0.7.0</Version>
6+
<Version>0.7.3</Version>
77
<Authors>Mike Oliphant</Authors>
88
<Description>Easily create VST (VST3) audio plugins in C# .NET.</Description>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -15,6 +15,10 @@
1515
<PackageReadmeFile>README.md</PackageReadmeFile>
1616
</PropertyGroup>
1717

18+
<ItemGroup>
19+
<None Include="build\AudioPlugSharp.targets" Pack="true" PackagePath="build\AudioPlugSharp.targets" />
20+
</ItemGroup>
21+
1822
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
1923
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2024
</PropertyGroup>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Content Include="$(MSBuildThisFileDirectory)/../lib/net8.0/AudioPlugSharp.dll">
5+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
6+
<Visible>false</Visible>
7+
</Content>
8+
</ItemGroup>
9+
</Project>

0 commit comments

Comments
 (0)