Skip to content

Commit c5f714d

Browse files
committed
Migrate to VS2017
1 parent 7caa22e commit c5f714d

File tree

86 files changed

+1031
-48724
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+1031
-48724
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<Description>Example of Warden Commands &amp; Events app using Rebus.</Description>
5+
<VersionPrefix>1.3.1</VersionPrefix>
6+
<Authors>Piotr Gankiewicz</Authors>
7+
<TargetFramework>net461</TargetFramework>
8+
<AssemblyName>Warden.Examples.CommandsAndEvents.App</AssemblyName>
9+
<OutputType>Exe</OutputType>
10+
<PackageId>Warden.Examples.CommandsAndEvents.App</PackageId>
11+
<PackageTags>Warden</PackageTags>
12+
<PackageProjectUrl>https://getwarden.net</PackageProjectUrl>
13+
<PackageLicenseUrl>https://github.com/warden-stack/Warden/blob/master/LICENSE</PackageLicenseUrl>
14+
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
15+
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
16+
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
17+
</PropertyGroup>
18+
19+
<ItemGroup>
20+
<ProjectReference Include="..\..\Warden\Warden.csproj" />
21+
<ProjectReference Include="..\..\Integrations\Warden.Integrations.SendGrid\Warden.Integrations.SendGrid.csproj" />
22+
<ProjectReference Include="..\..\Integrations\Warden.Integrations.Twilio\Warden.Integrations.Twilio.csproj" />
23+
<ProjectReference Include="..\..\Integrations\Warden.Integrations.Cachet\Warden.Integrations.Cachet.csproj" />
24+
<ProjectReference Include="..\..\Integrations\Warden.Integrations.HttpApi\Warden.Integrations.HttpApi.csproj" />
25+
<ProjectReference Include="..\..\Integrations\Warden.Integrations.MsSql\Warden.Integrations.MsSql.csproj" />
26+
<ProjectReference Include="..\..\Integrations\Warden.Integrations.Slack\Warden.Integrations.Slack.csproj" />
27+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.Disk\Warden.Watchers.Disk.csproj" />
28+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.MongoDb\Warden.Watchers.MongoDb.csproj" />
29+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.MsSql\Warden.Watchers.MsSql.csproj" />
30+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.Performance\Warden.Watchers.Performance.csproj" />
31+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.Server\Warden.Watchers.Server.csproj" />
32+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.Process\Warden.Watchers.Process.csproj" />
33+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.Redis\Warden.Watchers.Redis.csproj" />
34+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.Web\Warden.Watchers.Web.csproj" />
35+
</ItemGroup>
36+
37+
<ItemGroup>
38+
<PackageReference Include="Rebus" Version="2.0.1" />
39+
<PackageReference Include="Rebus.Msmq" Version="2.0.0" />
40+
</ItemGroup>
41+
42+
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
43+
<Reference Include="System" />
44+
<Reference Include="Microsoft.CSharp" />
45+
</ItemGroup>
46+
47+
</Project>

src/Examples/Warden.Examples.CommandsAndEvents.App/Warden.Examples.CommandsAndEvents.App.xproj

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/Examples/Warden.Examples.CommandsAndEvents.App/project.json

Lines changed: 0 additions & 38 deletions
This file was deleted.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<Description>Example of Warden Commands &amp; Events manager using Rebus.</Description>
5+
<VersionPrefix>1.3.1</VersionPrefix>
6+
<Authors>Piotr Gankiewicz</Authors>
7+
<TargetFramework>net461</TargetFramework>
8+
<AssemblyName>Warden.Examples.CommandsAndEvents.Manager</AssemblyName>
9+
<OutputType>Exe</OutputType>
10+
<PackageId>Warden.Examples.CommandsAndEvents.Manager</PackageId>
11+
<PackageTags>Warden</PackageTags>
12+
<PackageProjectUrl>https://getwarden.net</PackageProjectUrl>
13+
<PackageLicenseUrl>https://github.com/warden-stack/Warden/blob/master/LICENSE</PackageLicenseUrl>
14+
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
15+
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
16+
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
17+
</PropertyGroup>
18+
19+
<ItemGroup>
20+
<ProjectReference Include="..\..\Warden\Warden.csproj" />
21+
</ItemGroup>
22+
23+
<ItemGroup>
24+
<PackageReference Include="Rebus" Version="2.0.1" />
25+
<PackageReference Include="Rebus.Msmq" Version="2.0.0" />
26+
</ItemGroup>
27+
28+
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
29+
<Reference Include="System" />
30+
<Reference Include="Microsoft.CSharp" />
31+
</ItemGroup>
32+
33+
</Project>

src/Examples/Warden.Examples.CommandsAndEvents.Manager/Warden.Examples.CommandsAndEvents.Manager.xproj

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/Examples/Warden.Examples.CommandsAndEvents.Manager/project.json

Lines changed: 0 additions & 24 deletions
This file was deleted.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<Description>Example of Warden Console Application.</Description>
5+
<VersionPrefix>1.3.1</VersionPrefix>
6+
<Authors>Piotr Gankiewicz</Authors>
7+
<TargetFramework>net461</TargetFramework>
8+
<AssemblyName>Warden.Examples.Console</AssemblyName>
9+
<OutputType>Exe</OutputType>
10+
<PackageId>Warden.Examples.Console</PackageId>
11+
<PackageTags>Warden</PackageTags>
12+
<PackageProjectUrl>https://getwarden.net</PackageProjectUrl>
13+
<PackageLicenseUrl>https://github.com/warden-stack/Warden/blob/master/LICENSE</PackageLicenseUrl>
14+
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
15+
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
16+
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
17+
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
18+
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
19+
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
20+
</PropertyGroup>
21+
22+
<ItemGroup>
23+
<ProjectReference Include="..\..\Warden\Warden.csproj" />
24+
<ProjectReference Include="..\..\Integrations\Warden.Integrations.Cachet\Warden.Integrations.Cachet.csproj" />
25+
<ProjectReference Include="..\..\Integrations\Warden.Integrations.HttpApi\Warden.Integrations.HttpApi.csproj" />
26+
<ProjectReference Include="..\..\Integrations\Warden.Integrations.MsSql\Warden.Integrations.MsSql.csproj" />
27+
<ProjectReference Include="..\..\Integrations\Warden.Integrations.SendGrid\Warden.Integrations.SendGrid.csproj" />
28+
<ProjectReference Include="..\..\Integrations\Warden.Integrations.Slack\Warden.Integrations.Slack.csproj" />
29+
<ProjectReference Include="..\..\Integrations\Warden.Integrations.Twilio\Warden.Integrations.Twilio.csproj" />
30+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.Disk\Warden.Watchers.Disk.csproj" />
31+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.MongoDb\Warden.Watchers.MongoDb.csproj" />
32+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.MsSql\Warden.Watchers.MsSql.csproj" />
33+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.Performance\Warden.Watchers.Performance.csproj" />
34+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.Server\Warden.Watchers.Server.csproj" />
35+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.Process\Warden.Watchers.Process.csproj" />
36+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.Redis\Warden.Watchers.Redis.csproj" />
37+
<ProjectReference Include="..\..\Watchers\Warden.Watchers.Web\Warden.Watchers.Web.csproj" />
38+
</ItemGroup>
39+
40+
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
41+
<Reference Include="System" />
42+
<Reference Include="Microsoft.CSharp" />
43+
</ItemGroup>
44+
45+
</Project>

src/Examples/Warden.Examples.Console/Warden.Examples.Console.xproj

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/Examples/Warden.Examples.Console/project.json

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)