Skip to content

Commit

Permalink
revert gitIgnore for env.json. Udated Resource.Designer file for loca…
Browse files Browse the repository at this point in the history
…l runs
  • Loading branch information
laolubenson committed Sep 20, 2018
1 parent 48d7256 commit dda1bae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ test-results
*.pidb
packages
*.nupkg
env.json
.idea
.vs/

4 changes: 2 additions & 2 deletions integration_tests/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion integration_tests/helpers/Env.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ private static void Init()
if (!initialized)
{
initialized = true;
string path = AppDomain.CurrentDomain.BaseDirectory + "../../";
string path = AppDomain.CurrentDomain.BaseDirectory;
StreamReader sr = new StreamReader(path + "env.json");
string jsonString = sr.ReadToEnd();
env = JsonConvert.DeserializeObject<Dictionary<string, string>>(jsonString);
Expand Down

0 comments on commit dda1bae

Please sign in to comment.