Skip to content

Commit bda9385

Browse files
authored
Ensured AutoLoggerMessage DLL is included in publish output. (#25)
'developmentDependency=true' in the package metadata treats the package as a development-only dependency, which further prevents it from being copied to the output directory at publish time.
1 parent a446fa1 commit bda9385

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/AutoLoggerMessageGenerator.Sandbox/AutoLoggerMessageGenerator.Sandbox.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net9.0</TargetFramework>
44
<OutputType>Exe</OutputType>
55
</PropertyGroup>
66

src/AutoLoggerMessageGenerator/AutoLoggerMessageGenerator.Build.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<IsRoslynComponent>true</IsRoslynComponent>
66
<NoWarn>RSEXPERIMENTAL002;RS2008</NoWarn>
77
<Version>1.0.10</Version>
8-
<DevelopmentDependency>true</DevelopmentDependency>
8+
<DevelopmentDependency>false</DevelopmentDependency>
99
<AssemblyName>AutoLoggerMessageGenerator</AssemblyName>
1010
<IncludeBuildOutput>false</IncludeBuildOutput>
1111
</PropertyGroup>

0 commit comments

Comments
 (0)