Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>WitcherScriptMerger.Headless</RootNamespace>
<AssemblyName>WitcherScriptMerger.Headless</AssemblyName>
<!-- Matches WitcherScriptMerger/Properties/AssemblyInfo.cs's hand-maintained
AssemblyVersion/AssemblyFileVersion ("0.6.2") - that project has
AssemblyVersion/AssemblyFileVersion ("0.6.3") - that project has
GenerateAssemblyInfo=false (see its CLAUDE.md), so it can't pick up this
property; this one has no such override, so GenerateAssemblyInfo (default true)
stamps AssemblyVersion/AssemblyFileVersion/AssemblyInformationalVersion from it. -->
<Version>0.6.2</Version>
<Version>0.6.3</Version>
<!-- The SDK default appends "+<git commit sha>" to AssemblyInformationalVersion.
Suppressed so VersionInfo.GetVersion() (Core) prints exactly this <Version>
value (or whatever -p:Version= a release build passes) - matching, not just
Expand Down
78 changes: 39 additions & 39 deletions WitcherScriptMerger/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
[assembly: SupportedOSPlatform("windows")]
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("WitcherScriptMerger")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("WitcherScriptMerger")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("e00365ce-7ffa-45a7-b046-f3df9e279007")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.6.2")]
[assembly: AssemblyFileVersion("0.6.2")]
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;

[assembly: SupportedOSPlatform("windows")]

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("WitcherScriptMerger")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("WitcherScriptMerger")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("e00365ce-7ffa-45a7-b046-f3df9e279007")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.6.3")]
[assembly: AssemblyFileVersion("0.6.3")]
2 changes: 1 addition & 1 deletion vortex-extension/src/githubRelease.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const DEFAULT_WSM_REPO = 'TheValiantOne/WitcherScriptMerger';
* (`v<version>`) and `WitcherScriptMerger.Headless.csproj`'s own `<Version>`; bump it
* alongside a new WSM release once that release's assets are published.
*/
export const DEFAULT_WSM_VERSION = '0.6.2';
export const DEFAULT_WSM_VERSION = '0.6.3';

/**
* Windows-only for now, matching Vortex itself being Windows-only today (see
Expand Down
Loading