-
Notifications
You must be signed in to change notification settings - Fork 551
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 #2826 from CosmosOS/impl/builder-improvements
Builder improvements
- Loading branch information
Showing
23 changed files
with
336 additions
and
220 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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Runtime.CompilerServices; | ||
|
||
namespace Cosmos.Build.Builder | ||
{ | ||
internal class BuilderConfiguration : IBuilderConfiguration | ||
{ | ||
public bool NoVsLaunch { get; set; } | ||
public bool UserKit { get; set; } | ||
public bool BuildExtensions { get; set; } | ||
} | ||
} |
50 changes: 0 additions & 50 deletions
50
source/Cosmos.Build.Builder/CommandLineBuilderConfiguration.cs
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,34 +1,24 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net472</TargetFramework> | ||
<OutputType>WinExe</OutputType> | ||
<ApplicationIcon>Resources\Cosmos.ico</ApplicationIcon> | ||
<IncludeWpfReferences>True</IncludeWpfReferences> | ||
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath> | ||
<SignAssembly>False</SignAssembly> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ApplicationDefinition Include="App.xaml" SubType="Designer" Generator="MSBuild:Compile" /> | ||
<Page Include="**\*.xaml" Exclude="App.xaml" SubType="Designer" Generator="MSBuild:Compile" /> | ||
<Compile Update="**\*.xaml.cs" SubType="Designer" DependentUpon="%(Filename)" /> | ||
<Resource Include="Resources\**" /> | ||
<UpToDateCheckInput Include="@(ApplicationDefinition)" /> | ||
<UpToDateCheckInput Include="@(Page)" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="System.Net.Http" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="1.16.30" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<PackageReference Include="NuGet.Common" /> | ||
<PackageReference Include="NuGet.Configuration" /> | ||
<PackageReference Include="System.Runtime.WindowsRuntime" Version="4.6.0" /> | ||
<PackageReference Include="WPF-UI" Version="2.0.3" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0-windows7.0</TargetFramework> | ||
<OutputType>WinExe</OutputType> | ||
<ApplicationIcon>Resources\Cosmos.ico</ApplicationIcon> | ||
<UseWPF>True</UseWPF> | ||
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
<SignAssembly>False</SignAssembly> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Resource Include="Resources\**" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="3.8.2112" /> | ||
<PackageReference Include="NuGet.Common" Version="6.8.0" /> | ||
<PackageReference Include="NuGet.Configuration" Version="6.8.0" /> | ||
<PackageReference Include="NuGet.Frameworks" Version="6.8.0" /> | ||
<PackageReference Include="System.Runtime.WindowsRuntime" Version="5.0.0-preview.5.20278.1" /> | ||
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" /> | ||
<PackageReference Include="WPF-UI" Version="3.0.0-preview.11" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
</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 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.