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
4 changes: 0 additions & 4 deletions BaseHandlers/BaseHandlers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,9 @@
<ProjectReference Include="..\MathLib\MathLib.csproj" />
<ProjectReference Include="..\ModelViewer\ModelViewer.csproj" />
<ProjectReference Include="..\PluginAPI\PluginAPI.csproj" />
<ProjectReference Include="..\VehicleList\VehicleList.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DebugHelper" Version="1.0.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.12" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetPath)&quot; &quot;$(SolutionDir)BundleManager\bin\$(ConfigurationName)\$(TargetFramework)\plugins\&quot; /s /e /y" />
</Target>
</Project>
76 changes: 53 additions & 23 deletions BundleManager/BundleManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
Expand All @@ -16,7 +15,6 @@
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
Expand All @@ -31,6 +29,9 @@
<PropertyGroup>
<ApplicationManifest>App.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<Compile Update="BetterListView.cs">
<SubType>Component</SubType>
Expand All @@ -39,40 +40,69 @@
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DebugHelper" Version="1.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="ScottPlot.WinForms" Version="5.0.54" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.12" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BundleFormat\BundleFormat.csproj" />
<ProjectReference Include="..\BundleUtilities\BundleUtilities.csproj" />
<ProjectReference Include="..\BurnoutImage\BurnoutImage.csproj" />
<ProjectReference Include="..\HexEditor\HexEditor.csproj" />
<ProjectReference Include="..\IconLibrary\IconLibrary.csproj" />
<ProjectReference Include="..\LangEditor\LangEditor.csproj" />
<ProjectReference Include="..\MathLib\MathLib.csproj" />
<ProjectReference Include="..\ModelViewer\ModelViewer.csproj" />
<ProjectReference Include="..\PluginAPI\PluginAPI.csproj" />
<ProjectReference Include="..\PluginSystem\PluginSystem.csproj" />
</ItemGroup>
<Target Name="Plugins" BeforeTargets="Build">
<ItemGroup>
<PluginFiles Include="..\BaseHandlers\bin\$(Configuration)\$(TargetFramework)\BaseHandlers.dll;
..\BaseHandlers\bin\$(Configuration)\$(TargetFramework)\BaseHandlers.pdb;
..\LangEditor\bin\$(Configuration)\$(TargetFramework)\LangEditor.dll;
..\LangEditor\bin\$(Configuration)\$(TargetFramework)\LangEditor.pdb;
..\LoopModel\bin\$(Configuration)\$(TargetFramework)\LoopModel.dll;
..\LoopModel\bin\$(Configuration)\$(TargetFramework)\LoopModel.pdb;
..\LuaList\bin\$(Configuration)\$(TargetFramework)\LuaList.dll;
..\LuaList\bin\$(Configuration)\$(TargetFramework)\LuaList.pdb;
..\PVSFormat\bin\$(Configuration)\$(TargetFramework)\PVSFormat.dll;
..\PVSFormat\bin\$(Configuration)\$(TargetFramework)\PVSFormat.pdb;
..\VaultFormat\bin\$(Configuration)\$(TargetFramework)\VaultFormat.dll;
..\VaultFormat\bin\$(Configuration)\$(TargetFramework)\VaultFormat.pdb;
..\VehicleList\bin\$(Configuration)\$(TargetFramework)\VehicleList.dll;
..\VehicleList\bin\$(Configuration)\$(TargetFramework)\VehicleList.pdb;
..\WheelList\bin\$(Configuration)\$(TargetFramework)\WheelList.dll;
..\WheelList\bin\$(Configuration)\$(TargetFramework)\WheelList.pdb;
..\WorldCollisionHandler\bin\$(Configuration)\$(TargetFramework)\WorldCollisionHandler.dll;
..\WorldCollisionHandler\bin\$(Configuration)\$(TargetFramework)\WorldCollisionHandler.pdb" />
</ItemGroup>
<Copy SourceFiles="@(PluginFiles)"
DestinationFolder="$(OutputPath)plugins"
SkipUnchangedFiles="true" />
</Target>
<ItemGroup>
<Content Include="icon.ico" />
<ShaderFiles Include="$(SolutionDir)resources\Shaders\**\*.*" />
</ItemGroup>
<Target Name="Shaders" AfterTargets="Build">
<Copy SourceFiles="@(ShaderFiles)"
DestinationFolder="$(OutputPath)Shaders"
SkipUnchangedFiles="true" />
</Target>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.5.2 %28x86 und x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<Content Include="$(OutputPath)plugins\*.dll">
<Link>plugins\%(FileName)%(Extension)</Link>
<PublishState>Include</PublishState>
<Visible>false</Visible>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DebugHelper" Version="1.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="ScottPlot.WinForms" Version="5.0.54" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.12" />
<None Include="..\LangEditor\keys\**\*.*">
<Visible>false</Visible>
<Link>keys\%(RecursiveDir)%(FileName)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(SolutionDir)libs\*&quot; &quot;$(ProjectDir)$(OutDir)&quot; /s /e /y&#xD;&#xA;xcopy &quot;$(SolutionDir)resources\*&quot; &quot;$(ProjectDir)$(OutDir)&quot; /s /e /y" />
</Target>
</Project>
29 changes: 0 additions & 29 deletions LangEditor/LangEditor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,33 +11,4 @@
<ProjectReference Include="..\BundleUtilities\BundleUtilities.csproj" />
<ProjectReference Include="..\PluginAPI\PluginAPI.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="keys\_all.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="keys\ids\challenges.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="keys\ids\drivethrus.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="keys\ids\events.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="keys\ids\roads.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="keys\ids\vehicles.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="keys\keys.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="keys\unsorted.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetPath)&quot; &quot;$(SolutionDir)BundleManager\bin\$(ConfigurationName)\$(TargetFramework)\plugins\&quot; /s /e /y" />
</Target>
</Project>
10 changes: 0 additions & 10 deletions LoopModel/LoopModel.csproj
Original file line number Diff line number Diff line change
@@ -1,32 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
</PropertyGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetPath)&quot; &quot;$(SolutionDir)BundleManager\bin\$(ConfigurationName)\$(TargetFramework)\plugins\&quot; /s /e /y" />
</Target>

<ItemGroup>
<PackageReference Include="ScottPlot.WinForms" Version="5.0.54" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\BundleFormat\BundleFormat.csproj" />
<ProjectReference Include="..\BundleUtilities\BundleUtilities.csproj" />
<ProjectReference Include="..\PluginAPI\PluginAPI.csproj" />
</ItemGroup>

</Project>
7 changes: 0 additions & 7 deletions LuaList/LuaList.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,9 @@
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\BundleFormat\BundleFormat.csproj" />
<ProjectReference Include="..\BundleUtilities\BundleUtilities.csproj" />
<ProjectReference Include="..\PluginAPI\PluginAPI.csproj" />
<ProjectReference Include="..\VehicleList\VehicleList.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetPath)&quot; &quot;$(SolutionDir)BundleManager\bin\$(ConfigurationName)\$(TargetFramework)\plugins\&quot; /s /e /y" />
</Target>
</Project>
3 changes: 0 additions & 3 deletions PVSFormat/PVSFormat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,4 @@
<PackageReference Include="DebugHelper" Version="1.0.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.12" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetPath)&quot; &quot;$(SolutionDir)BundleManager\bin\$(ConfigurationName)\$(TargetFramework)\plugins\&quot; /s /e /y" />
</Target>
</Project>
1 change: 1 addition & 0 deletions PluginSystem/PluginSystem.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\BundleUtilities\BundleUtilities.csproj" />
<ProjectReference Include="..\MathLib\MathLib.csproj" />
<ProjectReference Include="..\PluginAPI\PluginAPI.csproj" />
</ItemGroup>
</Project>
3 changes: 0 additions & 3 deletions VaultFormat/VaultFormat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,4 @@
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetPath)&quot; &quot;$(SolutionDir)BundleManager\bin\$(ConfigurationName)\$(TargetFramework)\plugins\&quot; /s /e /y" />
</Target>
</Project>
3 changes: 0 additions & 3 deletions VehicleList/VehicleList.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,4 @@
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetPath)&quot; &quot;$(SolutionDir)BundleManager\bin\$(ConfigurationName)\$(TargetFramework)\plugins\&quot; /s /e /y" />
</Target>
</Project>
9 changes: 0 additions & 9 deletions WheelList/WheelList.csproj
Original file line number Diff line number Diff line change
@@ -1,35 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\BundleFormat\BundleFormat.csproj" />
<ProjectReference Include="..\BundleUtilities\BundleUtilities.csproj" />
<ProjectReference Include="..\PluginAPI\PluginAPI.csproj" />
</ItemGroup>

<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetPath)&quot; &quot;$(SolutionDir)BundleManager\bin\$(ConfigurationName)\$(TargetFramework)\plugins\&quot; /s /e /y" />
</Target>

</Project>
3 changes: 0 additions & 3 deletions WorldCollisionHandler/WorldCollisionHandler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,4 @@
<PackageReference Include="DebugHelper" Version="1.0.0" />
<PackageReference Include="OpenTK" Version="4.7.7" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetPath)&quot; &quot;$(SolutionDir)BundleManager\bin\$(ConfigurationName)\$(TargetFramework)\plugins\&quot; /s /e /y" />
</Target>
</Project>
Loading