Skip to content

Commit 792f425

Browse files
[Feature] Deploy on tag (#93)
* [Feature] Deploy on tag * remove unused
1 parent cc00c68 commit 792f425

File tree

15 files changed

+26
-21
lines changed

15 files changed

+26
-21
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ deploy:
2727
provider: NuGet
2828
skip_symbols: true
2929
api_key:
30-
secure: token_etc
30+
secure: T5DAebGxPV1QtMqIYRQyPYhFr3yfKzlkOB2rtVl8SQkJD7nTLEPBPPtcI8MgbHj3
3131
artifact: '**\*.nupkg'
3232
on:
3333
appveyor_repo_tag: true

src/Chinchilla.Api.Specifications/Chinchilla.Api.Specifications.csproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
66
<Version>1.0.0</Version>
77
<IncludeBuildOutput>False</IncludeBuildOutput>
8+
<IsPackable>False</IsPackable>
89
</PropertyGroup>
910

1011
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -18,10 +19,10 @@
1819
</PropertyGroup>
1920

2021
<ItemGroup>
21-
<PackageReference Include="Machine.Fakes" Version="2.8.0" />
22-
<PackageReference Include="Machine.Fakes.Moq" Version="2.8.0" />
23-
<PackageReference Include="Machine.Specifications" Version="0.11.1" />
24-
<PackageReference Include="Machine.Specifications.Runner.VisualStudio" Version="2.3.0" />
22+
<PackageReference Include="Machine.Fakes" Version="2.9.0" />
23+
<PackageReference Include="Machine.Fakes.Moq" Version="2.9.0" />
24+
<PackageReference Include="Machine.Specifications" Version="0.12.0" />
25+
<PackageReference Include="Machine.Specifications.Runner.VisualStudio" Version="2.5.1" />
2526
<PackageReference Include="Machine.Specifications.Should" Version="0.11.0" />
2627
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
2728
</ItemGroup>

src/Chinchilla.Integration/Chinchilla.Integration.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<Version>1.0.0</Version>
77
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
88
<IncludeBuildOutput>False</IncludeBuildOutput>
9+
<IsPackable>False</IsPackable>
910
</PropertyGroup>
1011

1112
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -19,7 +20,7 @@
1920
</PropertyGroup>
2021

2122
<ItemGroup>
22-
<PackageReference Include="Castle.Core" Version="4.2.0" />
23+
<PackageReference Include="Castle.Core" Version="4.2.1" />
2324
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
2425
<PackageReference Include="nunit" Version="3.8.1" />
2526
<PackageReference Include="NUnit3TestAdapter" Version="3.8.0" />

src/Chinchilla.Sample.BasicPublishSubscribe/Chinchilla.Sample.BasicPublishSubscribe.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp1.1</TargetFramework>
6+
<IsPackable>False</IsPackable>
67
</PropertyGroup>
78

89
<ItemGroup>

src/Chinchilla.Sample.CastleConsumers/Chinchilla.Sample.CastleConsumers.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp1.1</TargetFramework>
6+
<IsPackable>False</IsPackable>
67
</PropertyGroup>
78

89
<ItemGroup>

src/Chinchilla.Sample.SharedSubscriptions/Chinchilla.Sample.SharedSubscriptions.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp1.1</TargetFramework>
6+
<IsPackable>False</IsPackable>
67
</PropertyGroup>
78

89
<ItemGroup>

src/Chinchilla.Sample.StockTicker/Chinchilla.Sample.StockTicker.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp1.1</TargetFramework>
6+
<IsPackable>False</IsPackable>
67
</PropertyGroup>
78

89
<ItemGroup>

src/Chinchilla.Sample.Timeouts/Chinchilla.Sample.Timeouts.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp1.1</TargetFramework>
6+
<IsPackable>False</IsPackable>
67
</PropertyGroup>
78

89
<ItemGroup>

src/Chinchilla.Sample.Workflow/Chinchilla.Sample.Workflow.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp1.1</TargetFramework>
6+
<IsPackable>False</IsPackable>
67
</PropertyGroup>
78

89
<ItemGroup>

src/Chinchilla.Serializers.JsonNET.Specifications/Chinchilla.Serializers.JsonNET.Specifications.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<Version>1.0.0</Version>
77
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
88
<IncludeBuildOutput>False</IncludeBuildOutput>
9+
<IsPackable>False</IsPackable>
910
</PropertyGroup>
1011

1112
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -19,9 +20,9 @@
1920
</PropertyGroup>
2021

2122
<ItemGroup>
22-
<PackageReference Include="Machine.Fakes.Moq" Version="2.8.0" />
23-
<PackageReference Include="Machine.Specifications" Version="0.11.1" />
24-
<PackageReference Include="Machine.Specifications.Runner.VisualStudio" Version="2.3.0" />
23+
<PackageReference Include="Machine.Fakes.Moq" Version="2.9.0" />
24+
<PackageReference Include="Machine.Specifications" Version="0.12.0" />
25+
<PackageReference Include="Machine.Specifications.Runner.VisualStudio" Version="2.5.1" />
2526
<PackageReference Include="Machine.Specifications.Should" Version="0.11.0" />
2627
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
2728
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />

0 commit comments

Comments
 (0)