-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModRemoteScene.csproj.backup
More file actions
52 lines (44 loc) · 2.36 KB
/
Copy pathModRemoteScene.csproj.backup
File metadata and controls
52 lines (44 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<Project Sdk="Godot.NET.Sdk/4.5.1" InitialTargets="CheckDependencyPaths">
<Import Project=".\Sts2PathDiscovery.props"/>
<Import Project="build/mod.build.props" />
<Import Project="build/mod.build.targets" />
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>preview</LangVersion>
<EnablePreviewFeatures>true</EnablePreviewFeatures>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
<ImplicitUsings>true</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppOutputBase>$(MSBuildProjectDirectory)\</AppOutputBase>
<PathMap>$(AppOutputBase)=.\</PathMap>
<GodotDisabledSourceGenerators>GodotPluginsInitializer</GodotDisabledSourceGenerators>
<!-- Diasble architecture mismatch warning; mods are ideally built for all platforms (MSIL)
while your local StS2 version will be for your specific platform. -->
<NoWarn>$(NoWarn);MSB3270</NoWarn>
</PropertyGroup>
<ItemGroup>
<Content Include="local.props.example"/>
<Content Include="project.godot"/>
<AdditionalFiles Include="ModRemoteScene/localization/**/*.json"/> <!-- Used by analyzer -->
<EmbeddedResource Remove="ModRemoteScene/**"/>
<Compile Remove="addons\**"/>
<Compile Remove="src\**"/>
<Compile Remove="ModRemoteScene/**"/>
<Compile Include="GModRemoteSceneCode/**/*.cs"/>
<!-- If TOOLS is not defined we want to exclude the "editor" folder from being shipped -->
<Compile Condition="$(DefineConstants.Contains('TOOLS')) == 'true'" Include="editor\**\*.cs" />
<Compile Condition="$(DefineConstants.Contains('TOOLS')) == 'false'" Remove="editor\**\*.cs" />
<None Include="ModRemoteScene/**"/>
<None Include="ModRemoteSceneCode/**"/>
<None Include="build/**"/>
<None Include="editor/**"/>
<None Include="ModRemoteScene.json"/>
<None Include="local.props"/>
<None Include=".gitignore"/>
<PackageReference Update="Alchyr.Sts2.ModAnalyzers" Version="0.1.9" />
<!--<GodotResourceFiles Include="ModRemoteScene/**"/>-->
</ItemGroup>
</Project>