-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.editorconfig aligned and code format applied to all the code
- Loading branch information
Showing
107 changed files
with
4,265 additions
and
2,887 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,73 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<Platforms>x64</Platforms> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<Platforms>x64</Platforms> | ||
|
||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
|
||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<GenerateAssemblyInfo>true</GenerateAssemblyInfo> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<GenerateAssemblyInfo>true</GenerateAssemblyInfo> | ||
|
||
<EnableSingleFileAnalysis>true</EnableSingleFileAnalysis> | ||
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract> | ||
<EnableSingleFileAnalysis>true</EnableSingleFileAnalysis> | ||
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract> | ||
|
||
<OutDir>../output</OutDir> | ||
<PublishDir>../publish</PublishDir> | ||
<ApplicationIcon>icon.ico</ApplicationIcon> | ||
</PropertyGroup> | ||
<OutDir>../output</OutDir> | ||
<PublishDir>../publish</PublishDir> | ||
<ApplicationIcon>icon.ico</ApplicationIcon> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Client\Client.csproj" /> | ||
<ProjectReference Include="..\Server\Server.csproj" /> | ||
<ProjectReference Include="..\Shared\Shared.csproj" /> | ||
<ProjectReference Include="..\external\FNA\FNA.Core.csproj" /> | ||
<ProjectReference Include="..\external\ImGui.NET\src\ImGui.NET\ImGui.NET.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Client\Client.csproj"/> | ||
<ProjectReference Include="..\Server\Server.csproj"/> | ||
<ProjectReference Include="..\Shared\Shared.csproj"/> | ||
<ProjectReference Include="..\external\FNA\FNA.Core.csproj"/> | ||
<ProjectReference Include="..\external\ImGui.NET\src\ImGui.NET\ImGui.NET.csproj"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="..\external\ImGui.NET\deps\cimgui\win-x64\cimgui.dll" CopyToOutputDirectory="PreserveNewest" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="Renderer\Effects\Shaders\*.fxc" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<DataFiles_libs Include="..\external\fna-libs\**" /> | ||
<DataFiles_libs Include="..\lib\**" /> | ||
<DataFiles_libs Remove="..\external\fna-libs\.github\**" /> | ||
<DataFiles_libs Remove="..\external\fna-libs\.git" /> | ||
<DataFiles_libs Remove="..\external\fna-libs\README.txt" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="ClassicUO.Assets"> | ||
<HintPath>..\lib\x64\ClassicUO.Assets.dll</HintPath> | ||
</Reference> | ||
<Reference Include="ClassicUO.IO"> | ||
<HintPath>..\lib\x64\ClassicUO.IO.dll</HintPath> | ||
</Reference> | ||
<Reference Include="ClassicUO.Utility"> | ||
<HintPath>..\lib\x64\ClassicUO.Utility.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="background.png"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="..\external\ImGui.NET\deps\cimgui\win-x64\cimgui.dll" CopyToOutputDirectory="PreserveNewest"/> | ||
</ItemGroup> | ||
|
||
<Target Name="CopyExternalDeps_build" AfterTargets="Build"> | ||
<Copy SourceFiles="@(DataFiles_libs)" DestinationFiles="@(DataFiles_libs->'$(OutDir)/%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="true" /> | ||
</Target> | ||
<ItemGroup> | ||
<EmbeddedResource Include="Renderer\Effects\Shaders\*.fxc"/> | ||
</ItemGroup> | ||
|
||
<Target Name="CopyExternalDeps_publish" AfterTargets="Publish"> | ||
<Copy SourceFiles="@(DataFiles_libs)" DestinationFiles="@(DataFiles_libs->'$(PublishDir)/%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="true" /> | ||
</Target> | ||
<ItemGroup> | ||
<DataFiles_libs Include="..\external\fna-libs\**"/> | ||
<DataFiles_libs Include="..\lib\**"/> | ||
<DataFiles_libs Remove="..\external\fna-libs\.github\**"/> | ||
<DataFiles_libs Remove="..\external\fna-libs\.git"/> | ||
<DataFiles_libs Remove="..\external\fna-libs\README.txt"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="ClassicUO.Assets"> | ||
<HintPath>..\lib\x64\ClassicUO.Assets.dll</HintPath> | ||
</Reference> | ||
<Reference Include="ClassicUO.IO"> | ||
<HintPath>..\lib\x64\ClassicUO.IO.dll</HintPath> | ||
</Reference> | ||
<Reference Include="ClassicUO.Utility"> | ||
<HintPath>..\lib\x64\ClassicUO.Utility.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="background.png"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
<Target Name="CopyExternalDeps_build" AfterTargets="Build"> | ||
<Copy SourceFiles="@(DataFiles_libs)" DestinationFiles="@(DataFiles_libs->'$(OutDir)/%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="true"/> | ||
</Target> | ||
|
||
<Target Name="CopyExternalDeps_publish" AfterTargets="Publish"> | ||
<Copy SourceFiles="@(DataFiles_libs)" DestinationFiles="@(DataFiles_libs->'$(PublishDir)/%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="true"/> | ||
</Target> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.