Skip to content
Merged
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
13 changes: 0 additions & 13 deletions AzureDevopsStateTracker/AzureDevopsStateTracker.csproj

This file was deleted.

37 changes: 0 additions & 37 deletions AzureDevopsStateTracker/Configurations/Configuration.cs

This file was deleted.

20 changes: 0 additions & 20 deletions AzureDevopsStateTracker/Data/DataBaseConfig.cs

This file was deleted.

70 changes: 0 additions & 70 deletions AzureDevopsStateTracker/Data/Repository.cs

This file was deleted.

43 changes: 0 additions & 43 deletions AzureDevopsStateTracker/Data/WorkItemRepository.cs

This file was deleted.

59 changes: 0 additions & 59 deletions AzureDevopsStateTracker/Entities/WorkItemChange.cs

This file was deleted.

This file was deleted.

18 changes: 0 additions & 18 deletions AzureDevopsStateTracker/Interfaces/Internals/IRepository.cs

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
using AzureDevopsStateTracker.DTOs;
using AzureDevopsStateTracker.Entities;
using AzureDevopsStateTracker.Interfaces;
using AzureDevopsTracker.DTOs;
using AzureDevopsTracker.Entities;
using AzureDevopsTracker.Extensions;
using AzureDevopsTracker.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;

namespace AzureDevopsStateTracker.Adapters
namespace AzureDevopsTracker.Adapters
{
internal class WorkItemAdapter : IWorkItemAdapter
{
Expand Down Expand Up @@ -86,8 +88,8 @@ public TimeByStateDTO ToTimeByStateDTO(TimeByState workItemStatusTime)
{
CreatedAt = workItemStatusTime.CreatedAt,
State = workItemStatusTime.State,
//TotalTime = workItemStatusTime.TotalTimeText,
//TotalWorkedTime = workItemStatusTime.TotalWorkedTimeText
TotalTime = TimeSpan.FromSeconds(workItemStatusTime.TotalTime).ToTextTime(),
TotalWorkedTime = TimeSpan.FromSeconds(workItemStatusTime.TotalWorkedTime).ToTextTime()
};
}

Expand Down
41 changes: 41 additions & 0 deletions AzureDevopsTracker/AzureDevopsTracker.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>AzureDevOpsTracker</PackageId>
<Authors>Elvis Souza | Diego Galante</Authors>
<Company>TypingHard</Company>
<Product>Azure DevOps Tracker</Product>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageProjectUrl>https://github.com/typinghard/azure-devops-tracker</PackageProjectUrl>
<RepositoryUrl>https://github.com/typinghard/azure-devops-tracker</RepositoryUrl>
<PackageIcon>adst_icon.png</PackageIcon>
<PackageIconUrl />
<RepositoryType>GitHub</RepositoryType>
<PackageTags>Azure DevOps Tracker Columns State Tracking Track Board Scrum Kanbam Time Column Timing Workitem Worked Hours Team Performance</PackageTags>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseFile>LICENSE.md.txt</PackageLicenseFile>
<Description>A NuGet that allows you to use a Azure DevOps Service Hook to track workitems changes in a simply and detailed way.</Description>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Version>1.0.1</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.7" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="1.1.2" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\..\..\..\..\..\Downloads\adst_icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="LICENSE.md.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31402.337
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AzureDevopsStateTracker", "AzureDevopsStateTracker.csproj", "{E00DFF81-08B1-4A71-82C4-7CED951299BE}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AzureDevopsTracker", "AzureDevopsTracker.csproj", "{26FE19B9-7CD6-4418-9112-2E3C363985BF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E00DFF81-08B1-4A71-82C4-7CED951299BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E00DFF81-08B1-4A71-82C4-7CED951299BE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E00DFF81-08B1-4A71-82C4-7CED951299BE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E00DFF81-08B1-4A71-82C4-7CED951299BE}.Release|Any CPU.Build.0 = Release|Any CPU
{26FE19B9-7CD6-4418-9112-2E3C363985BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{26FE19B9-7CD6-4418-9112-2E3C363985BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{26FE19B9-7CD6-4418-9112-2E3C363985BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{26FE19B9-7CD6-4418-9112-2E3C363985BF}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Loading