Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ForzaDSXSettings.cs #24

Merged
merged 14 commits into from
Jul 13, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/dotnetlinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: dotnet restore

- name: Package
run: dotnet dotnet publish -r win-x64 -p:PublishSingleFile=true --self-contained false -c Release --output ./forza/devrel
run: dotnet dotnet publish -r win-x64 -p:PublishSingleFile=true --self-contained true -c Release --output ./forza/devrel

- name: Compress Artifact
run: zip -r ./forza/devrel/ForzaDSX-RC.zip ./forza/devrel
Expand Down
Binary file modified .vs/ForzaDSX/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file modified .vs/ForzaDSX/v17/.futdcache.v2
Binary file not shown.
Binary file modified .vs/ForzaDSX/v17/.suo
Binary file not shown.
Binary file removed .vs/ProjectEvaluation/forzadsx.metadata.v5.1
Binary file not shown.
Binary file removed .vs/ProjectEvaluation/forzadsx.projects.v5.1
Binary file not shown.
5 changes: 3 additions & 2 deletions .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"ExpandedNodes": [
""
"",
"\\Properties"
],
"SelectedNode": "\\ForzaDSX.sln",
"SelectedNode": "\\Program.cs",
"PreviewInSolutionExplorer": false
}
Binary file modified .vs/slnx.sqlite
Binary file not shown.
14 changes: 10 additions & 4 deletions App.config
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,21 @@
<setting name="_forza_PORT" serializeAs="String">
<value>5300</value>
</setting>
<setting name="_left_Trigger_Eeffect_Intensity" serializeAs="String">
<value>1</value>
<setting name="_left_Trigger_Effect_Intensity" serializeAs="String">
<value>0.7</value>
</setting>
<setting name="_right_Trigger_Eeffect_Intensity" serializeAs="String">
<value>1</value>
<setting name="_right_Trigger_Effect_Intensity" serializeAs="String">
<value>0.7</value>
</setting>
<setting name="_verbose" serializeAs="String">
<value>0</value>
</setting>
<setting name="ThrottleTriggerMode" serializeAs="String">
<value>2</value>
</setting>
<setting name="BrakeTriggerMode" serializeAs="String">
<value>2</value>
</setting>
</ForzaDSX.Properties.Settings>
</userSettings>
</configuration>
16 changes: 8 additions & 8 deletions ForzaDSX.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<!--<PublishSingleFile Condition="'$(Configuration)' == 'Release'">true</PublishSingleFile>-->
<!--<SelfContained Condition="'$(Configuration)' == 'Release'">true</SelfContained>-->
<PublishSingleFile Condition="'$(Configuration)' == 'Release'">true</PublishSingleFile>
<SelfContained Condition="'$(Configuration)' == 'Release'">true</SelfContained>
<PublishReadyToRun Condition="'$(Configuration)' == 'Release'">true</PublishReadyToRun>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<!--<PublishReadyToRun Condition="'$(Configuration)' == 'Release'">true</PublishReadyToRun>-->
<PublishSingleFile>true</PublishSingleFile>
<!--<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishReadyToRun>true</PublishReadyToRun>-->
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platforms>AnyCPU</Platforms>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
<UseWindowsForms>True</UseWindowsForms>
<StartupObject>ForzaDSX.Program</StartupObject>
<IsPublishable>True</IsPublishable>
<Title>ForzaDSX</Title>
<IncludeSymbols>False</IncludeSymbols>
<UseWPF>True</UseWPF>
<IncludeSymbols>True</IncludeSymbols>
<UseWPF>False</UseWPF>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<Company>Paliverse Apps LLC</Company>
</PropertyGroup>
Expand All @@ -31,7 +31,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>none</DebugType>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
Expand Down
2 changes: 1 addition & 1 deletion ForzaDSX.csproj.user
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>
<PropertyGroup>
<ActiveDebugProfile>ForzaDSX</ActiveDebugProfile>
<_LastSelectedProfileId>D:\Development\Projects\ForzaDSX\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
<_LastSelectedProfileId>E:\Development\Projects\ForzaDSX\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
</PropertyGroup>
<ItemGroup>
<Compile Update="UI.cs">
Expand Down
199 changes: 0 additions & 199 deletions ForzaDSXSettings.cs

This file was deleted.

Loading
Loading