Skip to content

Commit

Permalink
Make Native project use v143
Browse files Browse the repository at this point in the history
so that all required frameworks are installed from one Build Tools (2022).
Remove unused reference to Serilog in Lib in preparation for Nuget deployment
  • Loading branch information
da3dsoul committed Apr 4, 2022
1 parent 6214bc3 commit 9a365cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion AVDump3Lib/AVDump3Lib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
<PackageReference Include="ExtKnot.StringInvariants" Version="1.0.4-alpha" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.1.0-1.final" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="3.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
14 changes: 7 additions & 7 deletions AVDump3NativeLib/AVDump3NativeLib.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='GithubWorkflow|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
Expand Down Expand Up @@ -82,8 +82,8 @@
<LanguageStandard_C>Default</LanguageStandard_C>
</ClCompile>
<PostBuildEvent>
<Command>copy /Y "$(OutDir)AVD*.dll" "$(SolutionDir)AVDump3CL\bin\$(PlatformName)\$(ConfigurationName)\net6.0\"
copy /Y "$(OutDir)AVD*.pdb" "$(SolutionDir)AVDump3CL\bin\$(PlatformName)\$(ConfigurationName)\net6.0\"
<Command>copy /Y "$(OutDir)AVD*.dll" "$(SolutionDir)AVDump3CL\bin\$(ConfigurationName)\net6.0\"
copy /Y "$(OutDir)AVD*.pdb" "$(SolutionDir)AVDump3CL\bin\$(ConfigurationName)\net6.0\"
</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
Expand All @@ -107,8 +107,8 @@ copy /Y "$(OutDir)AVD*.pdb" "$(SolutionDir)AVDump3CL\bin\$(PlatformName)\$(Confi
<Profile>true</Profile>
</Link>
<PostBuildEvent>
<Command>copy /Y "$(OutDir)*.dll" "$(SolutionDir)AVDump3CL\bin\$(PlatformName)\$(ConfigurationName)\net6.0\"
copy /Y "$(OutDir)*.pdb" "$(SolutionDir)AVDump3CL\bin\$(PlatformName)\$(ConfigurationName)\net6.0\"
<Command>copy /Y "$(OutDir)*.dll" "$(SolutionDir)AVDump3CL\bin\$(ConfigurationName)\net6.0\"
copy /Y "$(OutDir)*.pdb" "$(SolutionDir)AVDump3CL\bin\$(ConfigurationName)\net6.0\"
</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
Expand Down

0 comments on commit 9a365cd

Please sign in to comment.