Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
capitalize ProductVersion, Configuration
  • Loading branch information
pavelsavara committed Nov 24, 2021
commit 8423275826fb762e1971aa3015a8efe2c7124168
12 changes: 6 additions & 6 deletions src/mono/wasm/runtime/exports.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

import productVersion from "consts:productVersion";
import configuration from "consts:configuration";
import ProductVersion from "consts:productVersion";
import Configuration from "consts:configuration";

import {
mono_wasm_new_root, mono_wasm_new_roots, mono_wasm_release_roots,
Expand Down Expand Up @@ -144,8 +144,8 @@ function initializeImportsAndExports(
INTERNAL: exports.internal,
Module: module,
RuntimeBuildInfo: {
productVersion,
configuration
ProductVersion,
Configuration
}
};

Expand Down Expand Up @@ -369,8 +369,8 @@ export interface DotNetPublicAPI {
Module: any,
RuntimeId: number,
RuntimeBuildInfo: {
productVersion: string,
configuration: string,
ProductVersion: string,
Configuration: string,
}
}

Expand Down