Skip to content
Open
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ DocProject/Help/html
# Click-Once directory
publish/

# CP2077SaveExporter: self-contained publish output (see CP2077SaveExporter/publish.sh, publish.ps1)
CP2077SaveExporter/publish/

# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
Expand Down
27 changes: 27 additions & 0 deletions CP2077SaveExporter/CP2077SaveExporter.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>CP2077SaveExporter</RootNamespace>
<AssemblyName>CP2077SaveExporter</AssemblyName>
<Platforms>x64</Platforms>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>

<!--
WolvenKit.Common references WolvenKit.RED4 and pulls WolvenKit.Core transitively.
Embedded hash databases (usedhashes, noderefs, tweakdbstr) live inside WolvenKit.Common.
-->
<ItemGroup>
<ProjectReference Include="..\WolvenKit\WolvenKit.Common\WolvenKit.Common.csproj" />
</ItemGroup>

<!-- Optional: place Facts.json next to the executable (plain JSON object: "1234567890": "fact_name", ...). -->

</Project>
Loading