Skip to content

Commit

Permalink
Move into source dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Redth committed Aug 6, 2019
1 parent fa2990c commit c1e9cd6
Show file tree
Hide file tree
Showing 15 changed files with 70 additions and 70 deletions.
Binary file removed icon.png
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.cake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Environment.SetVariableNames();

BuildParameters.SetParameters(context: Context,
buildSystem: BuildSystem,
sourceDirectoryPath: "./",
sourceDirectoryPath: "./source/",
title: "Cake.ExtendedNuGet",
repositoryOwner: "redth",
repositoryName: "Cake.ExtendedNuGet",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Common" Version="0.33.0" />
<PackageReference Include="Cake.Core" Version="0.33.0" />
<PackageReference Include="Cake.Testing" Version="0.33.0" />
<PackageReference Include="NuGet.Packaging" Version="5.0.2" PrivateAssets="All" />
<PackageReference Include="NuGet.Protocol" Version="5.0.2" PrivateAssets="All" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="xunit.runner.console" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Cake.ExtendedNuGet\Cake.ExtendedNuGet.csproj" />
</ItemGroup>

<ItemGroup>
<None Remove="TestData\xamarin.android.support.v4.23.1.1.nupkg" />
<None Remove="TestData\packages.config" />
</ItemGroup>
<ItemGroup>
<None Update="TestData\xamarin.android.support.v4.23.1.1.nupkg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="TestData\xamarin.android.support.v4.23.1.1.nupkg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestData\packages.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Common" Version="0.33.0" />
<PackageReference Include="Cake.Core" Version="0.33.0" />
<PackageReference Include="Cake.Testing" Version="0.33.0" />
<PackageReference Include="NuGet.Packaging" Version="5.0.2" PrivateAssets="All" />
<PackageReference Include="NuGet.Protocol" Version="5.0.2" PrivateAssets="All" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="xunit.runner.console" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Cake.ExtendedNuGet\Cake.ExtendedNuGet.csproj" />
</ItemGroup>

<ItemGroup>
<None Remove="TestData\xamarin.android.support.v4.23.1.1.nupkg" />
<None Remove="TestData\packages.config" />
</ItemGroup>
<ItemGroup>
<None Update="TestData\xamarin.android.support.v4.23.1.1.nupkg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="TestData\xamarin.android.support.v4.23.1.1.nupkg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestData\packages.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>
File renamed without changes.
File renamed without changes.
46 changes: 23 additions & 23 deletions Cake.ExtendedNuGet.sln → source/Cake.ExtendedNuGet.sln
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cake.ExtendedNuGet", "Cake.ExtendedNuGet\Cake.ExtendedNuGet.csproj", "{A070896F-CEC4-4FF0-B354-7EE1686359BF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cake.ExtendedNuGet.Tests", "Cake.ExtendedNuGet.Tests\Cake.ExtendedNuGet.Tests.csproj", "{FC26F9BF-7570-437A-B117-63932BBD2017}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A070896F-CEC4-4FF0-B354-7EE1686359BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A070896F-CEC4-4FF0-B354-7EE1686359BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A070896F-CEC4-4FF0-B354-7EE1686359BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A070896F-CEC4-4FF0-B354-7EE1686359BF}.Release|Any CPU.Build.0 = Release|Any CPU
{FC26F9BF-7570-437A-B117-63932BBD2017}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FC26F9BF-7570-437A-B117-63932BBD2017}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FC26F9BF-7570-437A-B117-63932BBD2017}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FC26F9BF-7570-437A-B117-63932BBD2017}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cake.ExtendedNuGet", "Cake.ExtendedNuGet\Cake.ExtendedNuGet.csproj", "{A070896F-CEC4-4FF0-B354-7EE1686359BF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cake.ExtendedNuGet.Tests", "Cake.ExtendedNuGet.Tests\Cake.ExtendedNuGet.Tests.csproj", "{FC26F9BF-7570-437A-B117-63932BBD2017}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A070896F-CEC4-4FF0-B354-7EE1686359BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A070896F-CEC4-4FF0-B354-7EE1686359BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A070896F-CEC4-4FF0-B354-7EE1686359BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A070896F-CEC4-4FF0-B354-7EE1686359BF}.Release|Any CPU.Build.0 = Release|Any CPU
{FC26F9BF-7570-437A-B117-63932BBD2017}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FC26F9BF-7570-437A-B117-63932BBD2017}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FC26F9BF-7570-437A-B117-63932BBD2017}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FC26F9BF-7570-437A-B117-63932BBD2017}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit c1e9cd6

Please sign in to comment.