diff options
author | Tim <contact@bytim.eu> | 2025-01-02 15:47:10 +0100 |
---|---|---|
committer | Tim <contact@bytim.eu> | 2025-01-02 15:47:10 +0100 |
commit | 64203ec7c0a7ea9466d6a013f18fddc5af7db77b (patch) | |
tree | 953cacb7262cf9e502706a9584ce85dbbff18d61 /GitAutoFetch.csproj | |
download | GitAutoFetch-64203ec7c0a7ea9466d6a013f18fddc5af7db77b.tar.xz GitAutoFetch-64203ec7c0a7ea9466d6a013f18fddc5af7db77b.zip |
Initial commit
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> |