Skip to content

Commit

Permalink
0.3.7.757
Browse files Browse the repository at this point in the history
  • Loading branch information
gleblebedev committed Feb 19, 2024
1 parent 442f5ce commit cb02b48
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"unofficial.Urho3DNet.Editor": {
"version": "0.3.7.750",
"version": "0.3.7.757",
"commands": [
"rbfx"
]
Expand Down
1 change: 0 additions & 1 deletion Content/Common/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ignore asset cache
/Cache/
/Cache.json

# Ignore temporary files
Expand Down
1 change: 1 addition & 0 deletions Content/Common/Cache/common_cache.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
When editor import files it will place assets in the Cache folder.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Urho3DNetVersion>0.3.7.750</Urho3DNetVersion>
<Urho3DNetVersion>0.3.7.757</Urho3DNetVersion>
</PropertyGroup>
</Project>
3 changes: 3 additions & 0 deletions RbfxTemplate.Android/RbfxTemplate.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
</ItemGroup>

<ItemGroup>
<AndroidAsset Include="../Content/Common/Cache/**">
<Link>Cache/%(RecursiveDir)%(FileName)%(Extension)</Link>
</AndroidAsset>
<AndroidAsset Include="../Content/Common/Data/**">
<Link>Data/%(RecursiveDir)%(FileName)%(Extension)</Link>
</AndroidAsset>
Expand Down
4 changes: 4 additions & 0 deletions RbfxTemplate.Desktop/RbfxTemplate.Desktop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
</ItemGroup>

<ItemGroup>
<Content Include="../Content/Common/Cache/**">
<Link>Cache/%(RecursiveDir)%(FileName)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="../Content/Common/Data/**">
<Link>Data/%(RecursiveDir)%(FileName)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
Expand Down
3 changes: 3 additions & 0 deletions RbfxTemplate.IOS/RbfxTemplate.IOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
</ItemGroup>

<ItemGroup>
<BundleResource Include="../Content/Common/Cache/**">
<Link>Cache/%(RecursiveDir)%(FileName)%(Extension)</Link>
</BundleResource>
<BundleResource Include="../Content/Common/Data/**">
<Link>Data/%(RecursiveDir)%(FileName)%(Extension)</Link>
</BundleResource>
Expand Down
8 changes: 7 additions & 1 deletion RbfxTemplate.UWP/RbfxTemplate.UWP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>false</UseDotNetNativeToolchain>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
Expand All @@ -95,6 +95,12 @@
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
</ItemGroup>
<ItemGroup>
<Content Include="../Content/Common/Cache/**">
<Link>Cache/%(RecursiveDir)%(FileName)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>true</Pack>
<PackagePath>Cache/%(RecursiveDir)%(FileName)%(Extension)</PackagePath>
</Content>
<Content Include="../Content/Common/Data/**">
<Link>Data/%(RecursiveDir)%(FileName)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
Expand Down
3 changes: 1 addition & 2 deletions RbfxTemplate/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"RBFX Editor": {
"commandName": "Executable",
"executablePath": "dotnet",
"commandLineArgs":
"tool run rbfx $(MSBuildProjectDirectory)/../Content/Common --plugin $(TargetDir)$(TargetFileName)",
"commandLineArgs": "tool run rbfx $(MSBuildProjectDirectory)/../Content/Common --single-process --plugin $(TargetDir)$(TargetFileName)",
"nativeDebugging": true
}
}
Expand Down

0 comments on commit cb02b48

Please sign in to comment.