Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions src/ServiceStack.Quartz.Tests/ServiceStack.Quartz.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net452;netcoreapp3.1</TargetFrameworks>
<LangVersion>8</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="ServiceStack" Version="5.8.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\demo\ServiceStackQuartz.ServiceInterface\ServiceStack.Quartz.ServiceInterface.csproj" />
<ProjectReference Include="..\demo\ServiceStackQuartz.ServiceModel\ServiceStack.Quartz.ServiceModel.csproj" />
<ProjectReference Include="..\ServiceStack.Quartz\ServiceStack.Quartz.csproj" />
</ItemGroup>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
<LangVersion>8</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="ServiceStack" Version="6.3.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\demo\ServiceStackQuartz.ServiceInterface\ServiceStack.Quartz.ServiceInterface.csproj" />
<ProjectReference Include="..\demo\ServiceStackQuartz.ServiceModel\ServiceStack.Quartz.ServiceModel.csproj" />
<ProjectReference Include="..\ServiceStack.Quartz\ServiceStack.Quartz.csproj" />
</ItemGroup>
</Project>
84 changes: 42 additions & 42 deletions src/ServiceStack.Quartz/ServiceStack.Quartz.csproj
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
<Configurations>Debug;Release</Configurations>
<Description>Easy job scheduling for ServiceStack - https://wwwlicious.github.io/ServiceStack.Quartz/</Description>
<Authors>Scott Mackay (@wwwlicious)</Authors>
<Owners>Scott Mackay (@wwwlicious)</Owners>
<Copyright>Copyright (c) wwwlicious 2016 - Present</Copyright>
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RunCodeAnalysis>false</RunCodeAnalysis>
<PackageId>ServiceStack.Quartz</PackageId>
<Version>$(VersionNumber)</Version>
<PackageLicenseUrl>https://opensource.org/licenses/MPL-2.0</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/wwwlicious/ServiceStack.Quartz</PackageProjectUrl>
<PackageIconUrl>https://wwwlicious.github.io/ServiceStack.Quartz/content/images/logo.png</PackageIconUrl>
<ReleaseNotes>https://github.com/wwwlicious/ServiceStack.Quartz/releases</ReleaseNotes>
<PackageTags>servicestack quartz quartznet job schedule plugin</PackageTags>
<RepositoryUrl>https://github.com/wwwlicious/ServiceStack.Quartz</RepositoryUrl>
<LangVersion>default</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net452|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NET452;</DefineConstants>
<DocumentationFile>bin\Debug\net452\ServiceStack.Quartz.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net452|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NET452</DefineConstants>
<DocumentationFile>bin\Release\net452\ServiceStack.Quartz.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETSTANDARD2_0;</DefineConstants>
<DocumentationFile>bin\Debug\netstandard2.0\ServiceStack.Quartz.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETSTANDARD2_0</DefineConstants>
<DocumentationFile>bin\Release\netstandard2.0\ServiceStack.Quartz.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" />
<PackageReference Include="Quartz" Version="3.0.7" />
<PackageReference Include="ServiceStack.Server" Version="5.8.0" />
</ItemGroup>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net472</TargetFrameworks>
<Configurations>Debug;Release</Configurations>
<Description>Easy job scheduling for ServiceStack - https://wwwlicious.github.io/ServiceStack.Quartz/</Description>
<Authors>Scott Mackay (@wwwlicious)</Authors>
<Owners>Scott Mackay (@wwwlicious)</Owners>
<Copyright>Copyright (c) wwwlicious 2016 - Present</Copyright>
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RunCodeAnalysis>false</RunCodeAnalysis>
<PackageId>ServiceStack.Quartz</PackageId>
<Version>$(VersionNumber)</Version>
<PackageLicenseUrl>https://opensource.org/licenses/MPL-2.0</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/wwwlicious/ServiceStack.Quartz</PackageProjectUrl>
<PackageIconUrl>https://wwwlicious.github.io/ServiceStack.Quartz/content/images/logo.png</PackageIconUrl>
<ReleaseNotes>https://github.com/wwwlicious/ServiceStack.Quartz/releases</ReleaseNotes>
<PackageTags>servicestack quartz quartznet job schedule plugin</PackageTags>
<RepositoryUrl>https://github.com/wwwlicious/ServiceStack.Quartz</RepositoryUrl>
<LangVersion>default</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net472|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NET472;</DefineConstants>
<DocumentationFile>bin\Debug\net472\ServiceStack.Quartz.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net472|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NET472</DefineConstants>
<DocumentationFile>bin\Release\net472\ServiceStack.Quartz.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETSTANDARD2_0;</DefineConstants>
<DocumentationFile>bin\Debug\netstandard2.0\ServiceStack.Quartz.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETSTANDARD2_0</DefineConstants>
<DocumentationFile>bin\Release\netstandard2.0\ServiceStack.Quartz.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
<PackageReference Include="Quartz" Version="3.4.0" />
<PackageReference Include="ServiceStack" Version="6.3.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Configurations>Debug;Release</Configurations>
<LangVersion>default</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="3.1.3" />
<PackageReference Include="Quartz" Version="3.0.7" />
<PackageReference Include="Serilog.AspNetCore" Version="3.2.0" />
<PackageReference Include="Serilog.Sinks.Literate" Version="3.0.0" />
<PackageReference Include="Serilog.Sinks.Seq" Version="4.0.0" />
<PackageReference Include="ServiceStack" Version="5.8.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\ServiceStack.Quartz\ServiceStack.Quartz.csproj" />
<ProjectReference Include="..\ServiceStackQuartz.ServiceInterface\ServiceStack.Quartz.ServiceInterface.csproj" />
<ProjectReference Include="..\ServiceStackQuartz.ServiceModel\ServiceStack.Quartz.ServiceModel.csproj" />
</ItemGroup>
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Configurations>Debug;Release</Configurations>
<LangVersion>default</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="3.1.3" />
<PackageReference Include="Serilog.AspNetCore" Version="3.2.0" />
<PackageReference Include="Serilog.Sinks.Literate" Version="3.0.0" />
<PackageReference Include="Serilog.Sinks.Seq" Version="4.0.0" />
<PackageReference Include="ServiceStack" Version="6.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\ServiceStack.Quartz\ServiceStack.Quartz.csproj" />
<ProjectReference Include="..\ServiceStackQuartz.ServiceInterface\ServiceStack.Quartz.ServiceInterface.csproj" />
<ProjectReference Include="..\ServiceStackQuartz.ServiceModel\ServiceStack.Quartz.ServiceModel.csproj" />
</ItemGroup>
</Project>