diff options
Diffstat (limited to 'GitAutoFetch.csproj')
-rw-r--r-- | GitAutoFetch.csproj | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/GitAutoFetch.csproj b/GitAutoFetch.csproj new file mode 100644 index 0000000..b6d5113 --- /dev/null +++ b/GitAutoFetch.csproj @@ -0,0 +1,16 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <OutputType>Exe</OutputType> + <TargetFramework>net9.0</TargetFramework> + <ImplicitUsings>enable</ImplicitUsings> + <Nullable>enable</Nullable> + <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> + <RootNamespace>GitAutoClone</RootNamespace> + </PropertyGroup> + + <ItemGroup> + <PackageReference Include="dotenv.net" Version="3.2.1" /> + </ItemGroup> + +</Project> |