Skip to content

Commit

Permalink
Merge pull request #4 from jcasale/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
jcasale authored Apr 30, 2024
2 parents 938d20e + de2b051 commit 8c04e5c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
echo "version=$version" >> $env:GITHUB_OUTPUT
- name: Run tests
run: dotnet.exe test .\src\PSNLog.sln
run: dotnet.exe test .\src\PSNLog.sln --configuration Release --runtime win-x64

- name: Clean solution
run: dotnet.exe clean .\src\PSNLog.sln --configuration Release
Expand Down
6 changes: 3 additions & 3 deletions src/PSNLog/PSNLog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Meziantou.Analyzer" Version="2.0.149">
<PackageReference Include="Meziantou.Analyzer" Version="2.0.150">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.PowerShell.5.1.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="NLog" Version="5.3.1" />
<PackageReference Include="NLog.Database" Version="5.3.1" />
<PackageReference Include="NLog" Version="5.3.2" />
<PackageReference Include="NLog.Database" Version="5.3.2" />
<PackageReference Include="StyleCop.Analyzers.Unstable" Version="1.2.0.556">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
8 changes: 4 additions & 4 deletions src/PSNLog/base.t4
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<#@ assembly name="%USERPROFILE%\.nuget\packages\nlog\5.3.1\lib\net46\NLog.dll" #>
<#@ assembly name="%USERPROFILE%\.nuget\packages\nlog.database\5.3.1\lib\net46\NLog.Database.dll" #>
<#@ assembly name="%USERPROFILE%\.nuget\packages\nlog\5.3.2\lib\net46\NLog.dll" #>
<#@ assembly name="%USERPROFILE%\.nuget\packages\nlog.database\5.3.2\lib\net46\NLog.Database.dll" #>
<#@ assembly name="System.Xml.dll" #>
<#@ import namespace="System" #>
<#@ import namespace="System.CodeDom" #>
Expand All @@ -16,8 +16,8 @@ public static string UserProfile { get; } = Environment.GetEnvironmentVariable("

public static string[] XmlPaths { get; } =
[
Path.Combine(UserProfile, @".nuget\packages\nlog\5.3.1\lib\net46\NLog.xml"),
Path.Combine(UserProfile, @".nuget\packages\nlog.database\5.3.1\lib\net46\NLog.Database.xml")
Path.Combine(UserProfile, @".nuget\packages\nlog\5.3.2\lib\net46\NLog.xml"),
Path.Combine(UserProfile, @".nuget\packages\nlog.database\5.3.2\lib\net46\NLog.Database.xml")
];

public static Type[] NLogTypes { get; } = Assembly.GetAssembly(typeof(NLog.Targets.Target)).GetTypes()
Expand Down
2 changes: 1 addition & 1 deletion src/Tests/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Meziantou.Analyzer" Version="2.0.149">
<PackageReference Include="Meziantou.Analyzer" Version="2.0.150">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 8c04e5c

Please sign in to comment.