Skip to content

Commit

Permalink
Version updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
jp2masa committed Jun 20, 2017
1 parent ebeb20f commit d382572
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions source/Cosmos.Build.Builder/CosmosTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ private void Restore(string project)
private void Pack(string project, string destDir, string version)
{
string xMSBuild = Path.Combine(Paths.VSPath, "MSBuild", "15.0", "Bin", "msbuild.exe");
string xParams = $"{Quoted(project)} /nodeReuse:False /t:Restore;Pack /maxcpucount /p:Version={Quoted(version)} /p:PackageOutputPath={Quoted(destDir)}";
string xParams = $"{Quoted(project)} /nodeReuse:False /t:Restore;Pack /maxcpucount /p:PackageVersion={Quoted(version)} /p:PackageOutputPath={Quoted(destDir)}";
StartConsole(xMSBuild, xParams);
}

Expand All @@ -282,7 +282,7 @@ private void CompileCosmos()
{
string xVSIPDir = Path.Combine(mCosmosDir, "Build", "VSIP");
string xPackagesDir = Path.Combine(xVSIPDir, "KernelPackages");
string xVersion = "1.0.0";
string xVersion = "1.0.1";

if (!App.IsUserKit)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Cosmos.Debug.Kernel" Version="1.0.0-*" />
<PackageReference Include="Cosmos.System" Version="1.0.0-*" />
<PackageReference Include="Cosmos.Debug.Kernel" Version="1.0.*" />
<PackageReference Include="Cosmos.System" Version="1.0.*" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Cosmos.Debug.Kernel" Version="1.0.0-*" />
<PackageReference Include="Cosmos.System" Version="1.0.0-*" />
<PackageReference Include="Cosmos.Debug.Kernel" Version="1.0.*" />
<PackageReference Include="Cosmos.System" Version="1.0.*" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Cosmos.Debug.Kernel" Version="1.0.0-*" />
<PackageReference Include="Cosmos.System" Version="1.0.0-*" />
<PackageReference Include="Cosmos.Debug.Kernel" Version="1.0.*" />
<PackageReference Include="Cosmos.System" Version="1.0.*" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Cosmos.Debug.Kernel" Version="1.0.0-*" />
<PackageReference Include="Cosmos.System" Version="1.0.0-*" />
<PackageReference Include="Cosmos.Debug.Kernel" Version="1.0.*" />
<PackageReference Include="Cosmos.System" Version="1.0.*" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Cosmos.Debug.Kernel" Version="1.0.0-*" />
<PackageReference Include="Cosmos.System" Version="1.0.0-*" />
<PackageReference Include="Cosmos.Debug.Kernel" Version="1.0.*" />
<PackageReference Include="Cosmos.System" Version="1.0.*" />
</ItemGroup>

</Project>

0 comments on commit d382572

Please sign in to comment.