-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from Mrcubix/build-cleanup
Build Process Cleanup
- Loading branch information
Showing
22 changed files
with
78 additions
and
131 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
Submodule OpenTabletDriver.External
updated
7 files
Submodule OpenTabletDriver.External-0.6.x
deleted from
7dd970
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,7 +1,15 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<NoWarn>$(NoWarn); NETSDK1138; NU1902; NU1903</NoWarn> | ||
<Nullable>enable</Nullable> | ||
<NoWarn>$(NoWarn); NETSDK1138</NoWarn> | ||
<NuGetAuditLevel>critical</NuGetAuditLevel> | ||
<AvaloniaVersion>11.0.10</AvaloniaVersion> | ||
</PropertyGroup> | ||
|
||
<!-- Only Embed debug symbols for the Release configuration --> | ||
<PropertyGroup Condition="'$(Configuration)' == 'Release'"> | ||
<DebugType>embedded</DebugType> | ||
</PropertyGroup> | ||
|
||
<Import Project="Targets/FixPackageId.targets" /> | ||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<Project> | ||
|
||
<Target Name="FixPackageId" BeforeTargets="_GenerateRestoreProjectPathWalk" Condition="$(AssemblyName.Contains('OpenTabletDriver'))"> | ||
|
||
<PropertyGroup> | ||
<PackageId>$(AssemblyName)-$(TargetFramework)</PackageId> | ||
</PropertyGroup> | ||
|
||
<Message Importance="High" Text="changed PackageId in Assembly '$(AssemblyName)' to '$(PackageId)'." /> | ||
</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
19 changes: 0 additions & 19 deletions
19
Touch-Gestures.Installer/Touch-Gestures.Installer-0.6.x.csproj
This file was deleted.
Oops, something went wrong.
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,19 +1,30 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<TargetFrameworks>net5.0;net6.0</TargetFrameworks> | ||
<Nullable>enable</Nullable> | ||
<NoWarn>NETSDK1138</NoWarn> | ||
</PropertyGroup> | ||
|
||
<!-- NET 5 Only --> | ||
<ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'"> | ||
<!-- OpenTabletDriver.Plugin --> | ||
<ProjectReference Include="../.modules/OpenTabletDriver.External/.modules/OpenTabletDriver/OpenTabletDriver.Plugin/OpenTabletDriver.Plugin.csproj" /> | ||
<ProjectReference Include="../.modules/OTD.EnhancedOutputMode/.modules/OpenTabletDriver/OpenTabletDriver.Plugin/OpenTabletDriver.Plugin.csproj" Private="False" /> | ||
</ItemGroup> | ||
|
||
<!-- NET 6 Only --> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> | ||
<!-- OpenTabletDriver.Plugin --> | ||
<ProjectReference Include="../.modules/OTD.EnhancedOutputMode-0.6.x/.modules/OpenTabletDriver/OpenTabletDriver.Plugin/OpenTabletDriver.Plugin.csproj" Private="False" /> | ||
</ItemGroup> | ||
|
||
<!-- embed ressource /build/plugin/Wheel-Addon.zip --> | ||
<ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'"> | ||
<EmbeddedResource Include="../build/plugin/0.5.x/Touch-Gestures-0.5.x.zip" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> | ||
<EmbeddedResource Include="../build/plugin/0.6.x/Touch-Gestures-0.6.x.zip" /> | ||
</ItemGroup> | ||
|
||
</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
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.