Skip to content

Commit

Permalink
Added DependencyFileAttribute
Browse files Browse the repository at this point in the history
  • Loading branch information
derekantrican committed Oct 25, 2024
1 parent 049ffb7 commit c883981
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions ClockworkFramework.Core/Atributes/DependencyFileAttribute.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

namespace ClockworkFramework.Core
{
public class DependencyFileAttribute : Attribute
{
public string File { get; set; }
public DependencyFileAttribute(string file)
{
File = file;
}
}
}
2 changes: 1 addition & 1 deletion ClockworkFramework.Core/ClockworkFramework.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Version>7.1.0</Version>
<Version>8.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit c883981

Please sign in to comment.