diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-07-19 13:18:35 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-13 16:15:45 -0400 |
commit | 23fe0c24a02f4275e93e775c5e1bf1b74fcb93a3 (patch) | |
tree | 65c6585402717917c270de09938d4f5c8d609b0f | |
parent | 6285c7954843557eec06cbae406c8ae436512803 (diff) | |
download | SMAPI-23fe0c24a02f4275e93e775c5e1bf1b74fcb93a3.tar.gz SMAPI-23fe0c24a02f4275e93e775c5e1bf1b74fcb93a3.tar.bz2 SMAPI-23fe0c24a02f4275e93e775c5e1bf1b74fcb93a3.zip |
ignore AWS Beanstalk data file
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | src/SMAPI.Web/StardewModdingAPI.Web.csproj | 4 |
2 files changed, 7 insertions, 0 deletions
@@ -26,3 +26,6 @@ _ReSharper*/ # sensitive files appsettings.Development.json + +# AWS generated files +src/SMAPI.Web/aws-beanstalk-tools-defaults.json diff --git a/src/SMAPI.Web/StardewModdingAPI.Web.csproj b/src/SMAPI.Web/StardewModdingAPI.Web.csproj index 32fdf135..73476a8e 100644 --- a/src/SMAPI.Web/StardewModdingAPI.Web.csproj +++ b/src/SMAPI.Web/StardewModdingAPI.Web.csproj @@ -7,6 +7,10 @@ </PropertyGroup> <ItemGroup> + <Content Remove="aws-beanstalk-tools-defaults.json" /> + </ItemGroup> + + <ItemGroup> <Compile Include="..\..\build\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" /> </ItemGroup> |