Skip to content

Commit

Permalink
Merge branch develop v9.3.1-210910.0149
Browse files Browse the repository at this point in the history
  • Loading branch information
anoyetta committed Sep 9, 2021
2 parents 2cf6e35 + 082c185 commit bbe581f
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
2 changes: 1 addition & 1 deletion source/@MasterVersion.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v9.3.0
v9.3.1
4 changes: 2 additions & 2 deletions source/ACT.Hojoring.Common/Version.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;

[assembly: AssemblyVersion("9.3.0.0")]
[assembly: AssemblyFileVersion("9.3.0.0")]
[assembly: AssemblyVersion("9.3.0.1")]
[assembly: AssemblyFileVersion("9.3.0.1")]
13 changes: 12 additions & 1 deletion source/ACT.UltraScouter/ACT.UltraScouter/ACT.UltraScouter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
<CopySQLiteInteropFiles>false</CopySQLiteInteropFiles>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -96,6 +97,16 @@
<Version>4.3.1</Version>
</PackageReference>
</ItemGroup>
<Target Name="EmbedSQLiteInteropFiles" BeforeTargets="ResolveReferences">
<ItemGroup>
<!-- Condition on item metadata trick adapted from https://stackoverflow.com/questions/5103026/in-msbuild-can-i-use-the-string-replace-function-on-a-metadata-item/8904902#8904902 -->
<EmbeddedResource Include="@(SQLiteInteropFiles)">
<!-- Syntax could be simplified in the future in MSBuild, see [Metadata should support instance methods](https://github.com/microsoft/msbuild/issues/1155) -->
<Link Condition="$([MSBuild]::ValueOrDefault('%(Identity)', '').Contains('x86'))">costura32\%(Filename)%(Extension)</Link>
<Link Condition="$([MSBuild]::ValueOrDefault('%(Identity)', '').Contains('x64'))">costura64\%(Filename)%(Extension)</Link>
</EmbeddedResource>
</ItemGroup>
</Target>
<ItemGroup>
<Content Include="ACT.Hojoring.ico" />
<Content Include="FodyWeavers.xml" />
Expand All @@ -110,4 +121,4 @@
<PreBuildEvent>
</PreBuildEvent>
</PropertyGroup>
</Project>
</Project>
13 changes: 12 additions & 1 deletion source/FFLogsRankingDonwloader/FFLogsRankingDonwloader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<TargetFrameworkProfile />
<CopySQLiteInteropFiles>false</CopySQLiteInteropFiles>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down Expand Up @@ -95,9 +96,19 @@
<Version>1.0.112</Version>
</PackageReference>
</ItemGroup>
<Target Name="EmbedSQLiteInteropFiles" BeforeTargets="ResolveReferences">
<ItemGroup>
<!-- Condition on item metadata trick adapted from https://stackoverflow.com/questions/5103026/in-msbuild-can-i-use-the-string-replace-function-on-a-metadata-item/8904902#8904902 -->
<EmbeddedResource Include="@(SQLiteInteropFiles)">
<!-- Syntax could be simplified in the future in MSBuild, see [Metadata should support instance methods](https://github.com/microsoft/msbuild/issues/1155) -->
<Link Condition="$([MSBuild]::ValueOrDefault('%(Identity)', '').Contains('x86'))">costura32\%(Filename)%(Extension)</Link>
<Link Condition="$([MSBuild]::ValueOrDefault('%(Identity)', '').Contains('x64'))">costura64\%(Filename)%(Extension)</Link>
</EmbeddedResource>
</ItemGroup>
</Target>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
</Project>
</Project>

0 comments on commit bbe581f

Please # to comment.