Skip to content

Commit

Permalink
Merge branch 'development/0.1.7' of github.com:LanternEQ/LanternExtra…
Browse files Browse the repository at this point in the history
…ctor into feature/t3d
  • Loading branch information
nickgal committed Jul 7, 2023
2 parents 169a744 + de2bfb1 commit e5b53cb
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions LanternExtractor/LanternExtractor.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishReadyToRun>true</PublishReadyToRun>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<PublishTrimmed>true</PublishTrimmed>
<LangVersion>7</LangVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>CA1416</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::VersionGreaterThanOrEquals('$(NETCoreSdkVersion)', '6.0'))">
<UseCurrentRuntimeIdentifier>true</UseCurrentRuntimeIdentifier>
</PropertyGroup>
<PropertyGroup Condition="!$([MSBuild]::VersionGreaterThanOrEquals('$(NETCoreSdkVersion)', '6.0'))">
<Arch>$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)</Arch>
<RuntimeIdentifier Condition=" '$([MSBuild]::IsOSPlatform(Windows))' ">win-$(Arch.ToLower())</RuntimeIdentifier>
<RuntimeIdentifier Condition=" '$([MSBuild]::IsOSPlatform(Linux))' ">linux-$(Arch.ToLower())</RuntimeIdentifier>
<RuntimeIdentifier Condition=" '$([MSBuild]::IsOSPlatform(OSX))' ">osx-$(Arch.ToLower())</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<Content Include="ClientData\animationsources.txt">
Expand Down

0 comments on commit e5b53cb

Please sign in to comment.