Skip to content

Commit

Permalink
Merge pull request #60 from da3dsoul/master
Browse files Browse the repository at this point in the history
Make Native project use v143
  • Loading branch information
DvdKhl authored Mar 10, 2024
2 parents f45d7a8 + 9a365cd commit ebab6b1
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 ebab6b1

Please sign in to comment.