14 lines
746 B
XML
14 lines
746 B
XML
<Project>
|
|
<!-- Auto-imported by every project in the repo; referenced via $(RaylibCsVersion). -->
|
|
<PropertyGroup>
|
|
<RaylibCsVersion>8.1.0-rc.1</RaylibCsVersion>
|
|
</PropertyGroup>
|
|
|
|
<!-- The net8-era wasm workload treats any browser-wasm project as a wasm *app* and hooks
|
|
its app-bundle build after Build, which fails for a plain classlib. Opt the binding out
|
|
(must happen at props time, before the workload defaults WasmBuildAppAfterThisTarget).
|
|
The matching OutputType pin lives in Directory.Build.targets. -->
|
|
<PropertyGroup Condition="'$(MSBuildProjectName)' == 'Raylib-cs' And '$(RuntimeIdentifier)' == 'browser-wasm'">
|
|
<DisableAutoWasmBuildApp>true</DisableAutoWasmBuildApp>
|
|
</PropertyGroup>
|
|
</Project>
|